Find issue reports
This request allows you to find issue reports that match the specified criteria.
POST
https://api.tracker.yandex.net/v3/entities/report/_search
Request format
Before making a request, get access to the API.
To find reports, use an HTTP request with the POST method. In the request body, specify the search parameters in JSON format.
POST /v3/entities/report/_search
Host: api.tracker.yandex.net
Authorization: OAuth <OAuth-token>
Content-Type: application/json
X-Org-ID or X-Cloud-Org-ID: <organization_ID>
{
"filter":
{
"author": "<user_login>"
}
}
Headers
-
Host: address of the node that provides the API. -
Authorization: Authorization token about these formats:-
OAuth <OAuth_token>: For authorization using the OAuth 2.0 protocol. Learn more -
Bearer <IAM_token>: For authorization using an IAMÂ token, if a Yandex Identity Hub organization is linked to Tracker. Learn more
-
-
X-Org-IDorX-Cloud-Org-ID: Organization ID.-
Use the
X-Org-IDheader if a Tracker organization is linked to Yandex 360 for Business. -
Use the
X-Cloud-Org-IDheader if a Tracker organization is linked to Yandex Identity Hub.
To get the organization ID, go to Administration → Organizations and copy the value from the ID field.
-
Request body parameters
The request body contains the information required to search for reports:
Additional parameters
| Parameter | Description | Data type |
|---|---|---|
| filter | Parameters for filtering reports. | Object |
| orderBy | Field for sorting reports. Valid values: id, shortId, createdBy, createdAt, updatedAt, self. |
String |
| orderAsc | Sort direction: true — ascending, false — descending. |
Boolean |
Fields of the filter object
Only the following keys are available for filtering: id, shortId, author.
| Parameter | Description | Data type |
|---|---|---|
| id | Report ID. | String |
| shortId | Short report ID. | Number |
| author | Report author. The value is taken from the id parameter of the createdBy field in the response body. |
String or number |
Pagination
The method supports paginated results. Pass pagination parameters in the request query string:
| Parameter | Description | Data type |
|---|---|---|
| perPage | Number of reports per response page. Default value: 50. | Number |
| page | Page number. Default value: 1. | Number |
Example: Find reports by a specific author
- The HTTP method POST is used.
- The results include reports created by a user with the specified ID.
POST /v3/entities/report/_search?perPage=5 HTTP/1.1 Host: api.tracker.yandex.net Authorization: OAuth y0__xAbc****** Content-Type: application/json X-Cloud-Org-ID: ab1c****** { "filter": { "author": "<user_id>" } }
Response format
If the request is successful, the API returns a response with code 200 OK.
The response body contains search results in JSON format.
{
"hits": 2,
"pages": 1,
"values": [
{
"self": "https://api.tracker.yandex.net/v3/entities/report/6a0d7cfb81208304d255f618",
"id": "6a0d7cfb81208304d255f618",
"version": 5,
"shortId": 185,
"entityType": "report",
"createdBy": {
"self": "https://api.tracker.yandex.net/v3/users/8000000000000005",
"id": "8000000000000005",
"display": "User Name",
"cloudUid": "ajemqnuerc0d4oaf598d",
"passportUid": 1987441286
},
"createdAt": "2026-05-20T09:20:59.753+0000",
"updatedAt": "2026-05-20T09:21:00.085+0000"
},
{
"self": "https://api.tracker.yandex.net/v3/entities/report/6a0d7cec7e0f032a528bbcd4",
"id": "6a0d7cec7e0f032a528bbcd4",
"version": 27,
"shortId": 184,
"entityType": "report",
"createdBy": {
"self": "https://api.tracker.yandex.net/v3/users/8000000000000005",
"id": "8000000000000005",
"display": "User Name",
"cloudUid": "ajemqnuerc0d4oaf598d",
"passportUid": 1987441286
},
"createdAt": "2026-05-20T09:20:44.592+0000",
"updatedAt": "2026-05-20T09:21:07.234+0000"
}
]
}
Response parameters
| Parameter | Description | Data type |
|---|---|---|
| hits | Total number of reports found. | Number |
| pages | Total number of result pages. | Number |
| orderBy | Field by which the reports are sorted. Returned if the orderBy parameter is passed in the request. The createdBy, createdAt, and updatedAt values are returned as author, created, and updated. |
String |
| values | Results. Report objects. | Array of objects |
When pagination is used, the pages parameter equals the number of pages that all found reports are split into for a given page size. The value is calculated as hits (total number of reports found) divided by perPage (number of reports per page), rounded up. For example, if hits: 42 and perPage: 2, the pages parameter equals 21.
Fields of report objects
| Parameter | Description | Data type |
|---|---|---|
| self | API resource address that contains information about the report. | String |
| id | Report ID. To open the report in the Tracker interface, paste the ID into the address and open it in your browser: https://tracker.yandex.com/pages/reports/<report_id> |
String |
| version | Report version. | Number |
| shortId | Short report ID. | Number |
| entityType | Entity type. Value: report. |
String |
| createdBy | Object with information about the report creator. | Object |
| createdAt | Date and time when the report was created in YYYY-MM-DDThh:mm:ss.sss±hhmm format. |
String |
| updatedAt | Date and time when the report was last updated in YYYY-MM-DDThh:mm:ss.sss±hhmm format. |
String |
Fields of the createdBy object
| Parameter | Description | Data type |
|---|---|---|
| self | Address of the API resource with information about the user | String |
| id | User ID. | String |
| display | Displayed user name | String |
| passportUid | Unique ID of the user account in the Yandex 360 for Business organization and Yandex ID. | Number |
| cloudUid | Unique user ID in Yandex Identity Hub | String |
If the request was not processed successfully, the API returns a response with an error code:
- 400
- One or more request parameters have an invalid value.
- 401
- The user is not authorized. Make sure that actions described in the API access section are performed.
- 403
- You are not authorized to perform this action. You can check what rights you have in the Tracker interface. The same rights are required to perform an action via the API and interface.
- 404
- The requested object was not found. You may have specified an invalid object ID or key.
- 422
- JSON validation error, the request is rejected.