Uploading a temporary file
Use this request to upload temporary files. Use this request to upload a file to Tracker first, and then attach it when creating an issue or adding a comment.
POST
https://api.tracker.yandex.net/v3/attachments/
Query format
Before making a request, get permission to access the API.
To add a temporary file, use an HTTP POST
request:
POST /v3/attachments/
Host: api.tracker.yandex.net
Authorization: OAuth <OAuth_token>
X-Org-ID or X-Cloud-Org-ID: <organization_ID>
Content-Type: multipart/form-data
<file>
Headers
-
Host
Address of the node that provides the API:api.tracker.yandex.net
-
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 Cloud Organization organization is linked to Tracker. Learn more
-
-
X-Org-ID
orX-Cloud-Org-ID
: Organization ID.-
Use the
X-Org-ID
header if a Tracker organization is linked to Yandex 360 for Business. -
Use the
X-Cloud-Org-ID
header if a Tracker organization is linked to Yandex Cloud Organization.
To get the organization ID, go to Administration → Organizations and copy the value from the ID field.
-
-
Content-Type
Request body format. The required value is
multipart/form-data
.
Request parameters
Additional parameters
Parameter | Description | Data type |
---|---|---|
filename | New name that a file will be stored on the server under If the parameter is not specified, a custom file name is used. | String |
Request body parameters
Required parameters
Parameter | Description | Data type |
---|---|---|
<file> | Uploaded file. The file size may not exceed 1024 Mbit. | File |
Response format
If the request is successful, the API returns a response with code 201 Created
.
The response body contains the parameters of the attached file in JSON format.
{
"self": "<file_address>",
"id": "<file_ID>",
"name": "<file_name>",
"content": "<file_download_address>",
"thumbnail": "<preview_download_address>",
"createdBy": {
"self": "<creator_address>",
"id": "<creator_username>",
"display": "<creator_name>"
},
"createdAt": "<file_upload_date_and_time>",
"mimetype": "<file_type>",
"size": <file_size>,
"metadata": {
"size": "<image_dimensions>"
}
}
Response parameters
Parameter | Description | Data type |
---|---|---|
self | Address of the API resource corresponding to the attached file | String |
id | File's unique ID. | String |
name | File name | String |
content | Address of the resource to download the file from | String |
thumbnail | Address of the resource to download the preview thumbnail from; available for image files only | String |
createdBy | Object with information about the user who attached the file | Map item |
createdAt | Date and time when the file is uploaded, in YYYY-MM-DDThh:mm:ss.sss±hhmm format |
String |
mimetype | File type, for example:
|
String |
size | File size in bytes | Integer |
metadata | Object with file metadata | Map item |
createdBy
object fields
Parameter | Description | Data type |
---|---|---|
self | Address of the resource corresponding to the user who uploaded the file | String |
id | Username of the user | String |
display | User's name (as in the interface) | String |
metadata
object fields
Parameter | Description | Data type |
---|---|---|
size | Image size in pixels | String |
If the request is processed incorrectly, the API returns a response with an error code:
- 400
- One or more request parameters have an invalid value.
- 404
- The requested object was not found. You may have specified an invalid object ID or key.