{
"opencollection": "1.0.0",
"info": {
"name": "Atlassian Admin Account Issue Search API",
"version": "1.0.0"
},
"request": {
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"items": [
{
"info": {
"name": "Issue Search",
"type": "folder"
},
"items": [
{
"info": {
"name": "Atlassian Get Issue Picker Suggestions",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/issue/picker",
"params": [
{
"name": "query",
"value": "",
"type": "query",
"description": "A string to match against text fields in the issue such as title, description, or comments."
},
{
"name": "currentJQL",
"value": "",
"type": "query",
"description": "A JQL query defining a list of issues to search for the query term. Note that `username` and `userkey` cannot be used as search terms for this parameter, due to privacy reasons. Use `accountId` instead."
},
{
"name": "currentIssueKey",
"value": "",
"type": "query",
"description": "The key of an issue to exclude from search results. For example, the issue the user is viewing when they perform this query."
},
{
"name": "currentProjectId",
"value": "",
"type": "query",
"description": "The ID of a project that suggested issues must belong to."
},
{
"name": "showSubTasks",
"value": "",
"type": "query",
"description": "Indicate whether to include subtasks in the suggestions list."
},
{
"name": "showSubTaskParent",
"value": "",
"type": "query",
"description": "When `currentIssueKey` is a subtask, whether to include the parent issue in the suggestions if it matches the query."
}
]
},
"docs": "Returns lists of issues matching a query string. Use this resource to provide auto-completion suggestions when the user is looking for an issue using a word or string.
This operation returns two lists:
* `History Search` which includes issues from the user's history of created, edited, or viewed issues that contain the string in the `query` parameter.
* `Current Search` which includes issues that match the JQL expression in `currentJQL` and contain the string in the `query` "
},
{
"info": {
"name": "Atlassian Check Issues Against Jql",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.atlassian.com/rest/api/3/jql/match",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Checks whether one or more issues would be returned by one or more JQL queries.
**[Permissions](#permissions) required:** None, however, issues are only matched against JQL queries where the user has:
* *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project that the issue is in.
* If [issue-level security](https://confluence.atlassian.com/x/J4lKLg) is configured, issue-level security permission to view the issue."
},
{
"info": {
"name": "Atlassian Search Issue Ids Using Jql",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.atlassian.com/rest/api/3/search/id",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Searches for IDs of issues using [JQL](https://confluence.atlassian.com/x/egORLQ).
Use the [Search](#api-rest-api-3-search-post) endpoint if you need to fetch more than just issue IDs. The Search endpoint returns more information, but may take much longer to respond to requests. This is because it uses a different mechanism for ordering results than this endpoint and doesn't provide the total number of results for your query.
This operation can be accessed anonymously.
**[Pe"
},
{
"info": {
"name": "Atlassian Search For Issues Using Jql Get",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://api.atlassian.com/rest/api/3/search",
"params": [
{
"name": "jql",
"value": "",
"type": "query",
"description": "The [JQL](https://confluence.atlassian.com/x/egORLQ) that defines the search. Note:\n\n * If no JQL expression is provided, all issues are returned.\n * `username` and `userkey` cannot be used as search terms due to privacy reasons. Use `accountId` instead.\n * If a user has hidden their email address in their user profile, partial matches of the email address will not find the user. An exact match is required."
},
{
"name": "startAt",
"value": "",
"type": "query",
"description": "The index of the first item to return in a page of results (page offset)."
},
{
"name": "maxResults",
"value": "",
"type": "query",
"description": "The maximum number of items to return per page. To manage page size, Jira may return fewer items per page where a large number of fields are requested. The greatest number of items returned per page is achieved when requesting `id` or `key` only."
},
{
"name": "validateQuery",
"value": "",
"type": "query",
"description": "Determines how to validate the JQL query and treat the validation results. Supported values are:\n\n * `strict` Returns a 400 response code if any errors are found, along with a list of all errors (and warnings).\n * `warn` Returns all errors as warnings.\n * `none` No validation is performed.\n * `true` *Deprecated* A legacy synonym for `strict`.\n * `false` *Deprecated* A legacy synonym for `warn`.\n\nNote: If the JQL is not correctly formed a 400 response code is returned, regardless of the `validateQuery` value."
},
{
"name": "fields",
"value": "",
"type": "query",
"description": "A list of fields to return for each issue, use it to retrieve a subset of fields. This parameter accepts a comma-separated list. Expand options include:\n\n * `*all` Returns all fields.\n * `*navigable` Returns navigable fields.\n * Any issue field, prefixed with a minus to exclude.\n\nExamples:\n\n * `summary,comment` Returns only the summary and comments fields.\n * `-description` Returns all navigable (default) fields except description.\n * `*all,-comment` Returns all fields except comments.\n\nThis parameter may be specified multiple times. For example, `fields=field1,field2&fields=field3`.\n\nNote: All navigable fields are returned by default. This differs from [GET issue](#api-rest-api-3-issue-issueIdOrKey-get) where the default is all fields."
},
{
"name": "expand",
"value": "",
"type": "query",
"description": "Use [expand](#expansion) to include additional information about issues in the response. This parameter accepts a comma-separated list. Expand options include:\n\n * `renderedFields` Returns field values rendered in HTML format.\n * `names` Returns the display name of each field.\n * `schema` Returns the schema describing a field type.\n * `transitions` Returns all possible transitions for the issue.\n * `operations` Returns all possible operations for the issue.\n * `editmeta` Returns information about how each field can be edited.\n * `changelog` Returns a list of recent updates to an issue, sorted by date, starting from the most recent.\n * `versionedRepresentations` Instead of `fields`, returns `versionedRepresentations` a JSON array containing each version of a field's value, with the highest numbered item representing the most recent version."
},
{
"name": "properties",
"value": "",
"type": "query",
"description": "A list of issue property keys for issue properties to include in the results. This parameter accepts a comma-separated list. Multiple properties can also be provided using an ampersand separated list. For example, `properties=prop1,prop2&properties=prop3`. A maximum of 5 issue property keys can be specified."
},
{
"name": "fieldsByKeys",
"value": "",
"type": "query",
"description": "Reference fields by their key (rather than ID)."
}
]
},
"docs": "Searches for issues using [JQL](https://confluence.atlassian.com/x/egORLQ).
If the JQL query expression is too large to be encoded as a query parameter, use the [POST](#api-rest-api-3-search-post) version of this resource.
This operation can be accessed anonymously.
**[Permissions](#permissions) required:** Issues are included in the response where the user has:
* *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project conta"
},
{
"info": {
"name": "Atlassian Search For Issues Using Jql Post",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.atlassian.com/rest/api/3/search",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Searches for issues using [JQL](https://confluence.atlassian.com/x/egORLQ).
There is a [GET](#api-rest-api-3-search-get) version of this resource that can be used for smaller JQL query expressions.
This operation can be accessed anonymously.
**[Permissions](#permissions) required:** Issues are included in the response where the user has:
* *Browse projects* [project permission](https://confluence.atlassian.com/x/yodKLg) for the project containing the issue.
* I"
}
]
}
],
"bundled": true
}