{ "opencollection": "1.0.0", "info": { "name": "Jira Cloud Platform REST Issue Comments Issue Search API", "version": "3" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Issue Search", "type": "folder" }, "items": [ { "info": { "name": "Jira Search for Issues Using Jql (get)", "type": "http" }, "http": { "method": "GET", "url": "https://{domain}.atlassian.net/rest/api/3/search", "params": [ { "name": "jql", "value": "project = PROJ AND status = Open ORDER BY created DESC", "type": "query", "description": "The JQL query string. For example: project = HSP AND issuetype = Bug. See JQL documentation for syntax." }, { "name": "startAt", "value": "10", "type": "query", "description": "The index of the first item to return in a page of results (page offset)." }, { "name": "maxResults", "value": "10", "type": "query", "description": "The maximum number of items to return per page. The maximum allowed value is determined by the Jira instance configuration, typically 100." }, { "name": "validateQuery", "value": "strict", "type": "query", "description": "Whether to validate the JQL query and how to handle validation results. Accepted values: strict, warn, none." }, { "name": "fields", "value": "", "type": "query", "description": "A list of fields to return for each issue. Use *all for all fields, *navigable for navigable fields only." }, { "name": "expand", "value": "example_value", "type": "query", "description": "Use expand to include additional information about issues in the response. Accepted values: renderedFields, names, schema, transitions, operations, editmeta, changelog, versionedRepresentations." }, { "name": "properties", "value": "", "type": "query", "description": "A list of issue properties to return for each issue." }, { "name": "fieldsByKeys", "value": "true", "type": "query", "description": "Whether fields in fields are referenced by keys rather than IDs." } ] }, "docs": "Searches for issues using JQL. If the JQL query expression is too large to be encoded as a query parameter, use the POST version of this resource. Sorting is supported via the ORDER BY clause in JQL." }, { "info": { "name": "Jira Search for Issues Using Jql (post)", "type": "http" }, "http": { "method": "POST", "url": "https://{domain}.atlassian.net/rest/api/3/search", "body": { "type": "json", "data": "{}" } }, "docs": "Searches for issues using JQL. Use this endpoint when the JQL query expression is too large to send as a query parameter. This provides the same functionality as the GET version." } ] } ], "bundled": true }