Cancel Translation

Cancel

POST | https://[api | sandbox].strakertranslations.com/v3/translate/cancel

Used to cancel a job. Jobs can only be canceled if the status is QUEUED and has not already been started by a translators.

Request Headers

API requests are authenticated by the Bearer Token.

Content-Type: multipart/form-data; charset=utf-8;
Authorization: Bearer {access_token}

Request Body

job_key=1234567890

Parameters

Name Type Description Required
job_key String The job UUID key generated when you created the job. A comma separated list for multiple jobs.

Response Example

{
"job": [
{
"job_key": "BCC3C60D-82F7-44A3-B541DAACB3B70D2E",
"message": "Your job has been canceled successfully.",
"success": true
}
]
}