I've got a C# program that uses the Jira API. I'm encountering a new problem where I'm trying to GET newly created Jira issues from the past month, but the JSON response from the API isn't giving me any of the paging info (startAt, maxResults, total, etc.). It is just starting with {"\issues":[....
I can't page through the data without this info, but it doesn't look like I can force the response I need (I even included startAt and maxResults to attempt it to "consider" those and possibly return them), and I think the URL is well-formed. Does anyone have any insight? It might be worth noting that the API we were originally using got deprecated, so I changed it to use version 3. Here is what the URL looks like:
"https://bec-sv.atlassian.net/rest/api/3/search/jql?jql=created%20%3E%3D%20-35d&fields=id,key,issuetype,created,customfield_12106,status,reporter,summary,updated,customfield_12111,customfield_11700,customfield_12107,assignee,customfield_12113,customfield_12108,customfield_12134,customfield_12226,customfield_12207,customfield_11902,fixVersions,customfield_10008,customfield_12283,customfield_12326,customfield_12325,customfield_12327,customfield_12321,customfield_12320,customfield_12329,customfield_12330,customfield_12331,customfield_12328,customfield_10007&startAt=0&maxResults=1000"