Search for issues using JQL API

I’ve recently integrated with the JIRA search issues api using JQL. In specific, I’ve been referencing this link => https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-get

I haven’t been able to track down very detailed documentation of the response object and the different fragments that may be returned. I see the brief descriptions for the child properties, is there another reference that I should be looking at? More so, I’ve noticed some documents regarding error properties showing the possibility of warningMessages (string array), errorMessages or errors being returned? Any help regarding the response data types/values would be helpful.

Hi,

I can only provide you with the knowledge I have. I hope it will be useful.

Example: https://your-domain.atlassian.net/rest/api/3/search?jql=reporter=“User@gmail.com”%20AND%20project=“10002”%20AND%20issuetype=“Task”&maxResults=100&startAt=0

You can search multiple fields with %20AND%20. And multiple parameters with &.

I would recommend to use Postman for testing and the error handling.

Other Documentation:
Parse Jql Query | Atlassian - JIRA | Postman API Network

Best regards,
Patrik