Get a list of external applications
Written by
Use this request to get a list of applications to which you can create a link.
Request format
To get a list of available external applications, use an HTTP GET
request:
GET /v2/applications
Host: https://api.tracker.yandex.net
Authorization: OAuth <OAuth token>
X-Org-ID: <organization ID>
Headers
-
Host
Address of the node that provides the API:
https://api.tracker.yandex.net
-
Authorization
OAuth token in
OAuth <token value>
format. For example:OAuth 0c4181a7c2cf4521964a72ff57a34a07
-
X-Org-ID
Organization ID.
Response format
Successful execution of the request
The request failed
If the request is successful, the API returns a response with code 200 OK
.
The response body contains information about external applications in JSON format.
[
{
"self": "https://api.tracker.yandex.net/v2/applications/my-application",
"id": "my-application",
"type": "my-application",
"name": "Application name"
},
...
]
Response parameters
Parameter | Description | Data type |
---|---|---|
self | Address of the API resource with information about the application. | String |
id | Application ID. | String |
type | Application type. The same as the id parameter value. |
String |
name | Application name. | String |
- 400
- One or more request parameters have an invalid value.
- 401
- The user isn't authorized. Make sure to perform the actions described in API access.
- 500
- Internal service error. Try again later.
- 503
- The API service is temporarily unavailable.