Jira API deprecation of issue search permissiosn issue

Hi

I am referring to this deprecation notice here https://developer.atlassian.com/changelog/#CHANGE-2046

I changed my code to call …/search/jql instead of …/search but now I am getting a 401 on my responses

PLease advise on what I need to do to fix it?

Thanks
Yatish

1 Like

Hello @YatishMadhav ,

Can you provide more details, like which endpoint, an example of request ?

As part the depreciation affect, passing in the body “startAt”: 0, “maxResults”: 100, could also fail. if yes, pass it using the query string from the URL : eg: search/jql?startAt=0&maxResults=100.