Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can I override the 'fields' default of IDs only to return ALL fields?

MGulick_chatsworth_com October 10, 2025

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.

2 answers

0 votes
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 10, 2025

Hi @MGulick_chatsworth_com 

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:

https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-jql-get

 

Kind regards,
Bill

0 votes
MGulick_chatsworth_com October 10, 2025

FYI:  We have tried:

 'fields': *all

Without success.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events