This worked in an advanced search in JIRA :
project = OTCI AND 'Development Site' = 'Remote - WFO Unix'
but the curl command doesn't return anything:
curl -G "https://ontrack.venturesolutions.com/jira/rest/api/2/search?jql=project%20%3D%20OTCI%20AND%20Development%20Site%20%3D%20Remote%20-%20WFO%20Unix&startAt=&maxResults=1000" -H 'Content-Type: application/json' -H 'Postman-Token: 753b8f93-53d2-4b1a-9b72-d4abd' -H 'cache-control: no-cache' -u 'Unix2Jira:Jira@XXX' -k --cacert dummy_path_none_required/ontrack_venturesolutions_com.crt -d
while this curl command works fine:
curl -G "https://ontrack.venturesolutions.com/jira/rest/api/2/search?jql=project%20%3D%20OTCI%20AND%20STATUS%20!=%20CLOSED%20AND%20STATUS%20!=%20Wrap-up%20AND%20STATUS%20!=%20COMPLETE&startAt=2000&maxResults=1000" -H 'Content-Type: application/json' -H 'Postman-Token: 753b8f93-53d2-4b1a-9b72-d4abd' -H 'cache-control: no-cache' -u 'Unix2Jira:Jira@XXX' -k --cacert dummy_path_none_required/ontrack_venturesolutions_com.crt -d
Does the curl command not have access to the column "Development Site" ?
your right, I didn't have the startAt set. But I corrected that and still no records selected:
curl -G "https://ontrack.venturesolutions.com/jira/rest/api/2/search?jql=project%20%3D%20OTCI%20AND%20Development%20Site%20%3D%20Remote%20-%20WFO%20Unix&startAt=0&maxResults=1000" -H 'Content-Type: application/json' -H 'Postman-Token: 753b8f93-53d2-4b1a-9b72-d4abd8352221' -H 'cache-control: no-cache' -u 'Unix2Jira:Jira@123' -k --cacert dummy_path_none_required/ontrack_venturesolutions_com.crt -d
I noticed that when I call our function that builds the curl command , I am entering :
JiraGet key,fields:{customfield_17711:value} project = OTCI AND 'Development Site' = 'Remote - WFO Unix'
but it looks like when it builds the curl command it is removing the single quotes and that may be messing up the curl command. I'll do some more checking if I can follow the code in our function to see how that is happening and let you know.
Thank you for your time on this..
yes, thats what the problem was. I was supposed to comment out the quotes. Its working fine now. Thanks again
Recommended Learning For You
Level up your skills with Atlassian learning
Reporting for DevOps
Identify four key DevOps metrics and learn how to use Jira reports to track your team's progress and performance.
Explore Atlassian Cloud products for agile and DevOps
Coordinate a suite of Atlassian Cloud products for greater collaboration and trust, higher-quality solutions, faster releases, and more.
Monitor component health with scorecards in Compass
Learn what scorecards are and their purpose in measuring the health of software components and improving DevOps practices.