The toloka.yandex.com
domain will be disabled starting July 1, 2023. Please use the toloka.dev
domain for API requests.
You can manually check tasks and reject responses of poor quality. To accept or reject received responses, change the status of the task suite using a PATCH request to the /assignments/<task_suite_assignment_ID>
resource:
SUBMITTED
to ACCEPTED
.SUBMITTED
to REJECTED
.REJECTED
to ACCEPTED
.To resend rejected tasks to be completed by other Tolokers, add a quality control rule to the pool (see Recompletion of assignments).
Try our new API reference: more parameter details, request/response examples, and code samples in various programming languages, including the Toloka-Kit usage samples.
PATCH https://toloka.dev/api/v1/assignments/<task_suite_assignment_id>Authorization: OAuth <OAuth token>Content-Type: application/JSON
Parameter | Overview |
---|---|
task_suite_assignment_id | ID of the task suite assignment. |
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Content-Type | Specifies the data format in the request body. |
{ "status": "ACCEPTED", "public_comment": "Well done!"}
Parameter | Overview |
---|---|
status | string
|
public_comment | string A comment for the Toloker. Maximum length: 2048 characters. |
The response contains the changed values of fields:
{ "status": "ACCEPTED", "public_comment": "Well done!", "bonus_ids": [10]}
Parameter | Overview |
---|---|
status | string
|
public_comment | string A comment for the Toloker. Maximum length: 2048 characters. |
bonus_ids[] | array of strings IDs of bonuses issued. |