Archive a project
Sends the project to the archive.
If a project isn't being used, you can send it to the archive. To do this, all the pools in the project must be archived. You can get the project ID from the list of projects.
Request
POST https://toloka.yandex.com/api/v1/projects/<project_id>/archive
Authorization: OAuth <OAuth token>
POST https://sandbox.toloka.yandex.com/api/v1/projects/<project_id>/archive
Authorization: OAuth <OAuth token>
Path parameters
Parameter | Overview |
---|---|
project_id | Project ID. |
Parameter | Overview |
---|---|
project_id | Project ID. |
Headers
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Response
The response contains information about the results of the operation.
{
"id" : "57068577e4b0bf7b07a0256f",
"type" : "PROJECT.ARCHIVE",
"status" : "SUCCESS",
"submitted" : "2016-04-07T16:06:15.902",
"started" : "2016-04-07T16:06:15.902",
"finished" : "2016-04-07T16:06:15.902",
"progress" : 100,
"parameters" : {
"project_id" : "1"
}
}
Parameter | Overview |
---|---|
id | string Operation ID. |
type | string Operation type:
|
status | string The status of the operation:
|
submitted | string The UTC date and time the request was sent, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
started | string The UTC date and time the operation started, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
finished | string The UTC date and time the operation was completed, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
progress | float The percentage of the operation completed. |
parameters.project_id | string Project ID. |
Parameter | Overview |
---|---|
id | string Operation ID. |
type | string Operation type:
|
status | string The status of the operation:
|
submitted | string The UTC date and time the request was sent, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
started | string The UTC date and time the operation started, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
finished | string The UTC date and time the operation was completed, in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.sss]. |
progress | float The percentage of the operation completed. |
parameters.project_id | string Project ID. |
You can check the operation status by sending requests to the /operations
resource. For more information, see Overview.