GET/job
Get a translation job with id
Fetch a translation job with given id
Parameters
Body JSON
token:
required
string
You need access token to call this endpoint. You can retrieve it by calling /auth/login endpoint. Tokens are expired in 24 hours for security reasons.
id:
required
string
Id of the job
Example Response
{
"status": "success",
"code": 200,
"job": {
"project_id": "581492a28ead0e4b088b4567",
"target_language_id": "en",
"source_language_id": "tr",
"status": "new",
"created_at": {
"sec": 1477745425,
"usec": 783000
},
"updated_at": {
"sec": 1477745425,
"usec": 783000
},
"currency": "TRY",
"quality": "basic",
"code": "JOB_6819",
"ppw": 0.15,
"price": 1.05,
"vat": 0.19,
"id": "58149b118ead0e48088b457a",
"document": {
"body": "My text to translate",
"instructions": "",
"extras": "",
"doc_type": "txt",
"created_at": {
"sec": 1477745425,
"usec": 782000
},
"updated_at": {
"sec": 1477745425,
"usec": 782000
},
"word_count": 7,
"id": "58149b118ead0e48088b4579"
},
"target_text": ""
},
"msg": "Job with id 58149b118ead0e48088b457a"
}