We have python code that seraches, via jql, or JIRA Cloud database.
We filter by:
project = KRAT and issuetype = ReleaseNote and resolution = Done and status = Done and fixversion in (Fall2024, eConnect2024.2)
We expect all data from each matching issue to be returned. That now fails.
Our query:
url = "https://cpieleeng.atlassian.net/rest/api/3/search"
auth = HTTPBasicAuth(authenticate["jira_user"], authenticat["jira_token"])
headers = { "Accept": "application/json" }
query = { 'maxResults': 200, 'jql': queryStr }
response = requests.request(
"GET",
url,
headers=headers'
params=query,
auth=auth
)
Results:
{'issues': [{'id': '21079'}, {'id': '21080'}, {'id': '21081'}, {'id': '21082'}, {'id': '21083'}, {'id': '21084'}], 'isLast': True}
These results are worthless.
You are using the deprecated endpoint. Please review the documentation for the new endpoint, and when you request any fields other than the id, the maximum results are limited to 100 work items:
Kind regards,
Bill
FYI: We have tried:
'fields': *all
Without success.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.