Retrieves comments and status history for the specific job.
NOT IMPLEMENTED
URL
(GET) /jobs/{id}/traces
...
id | The job ID. Also see jobs/{id}/summary | string, Mandatory | |||
allworkflow (NOT IMPLEMENTED) | Default: false. If true then include comments for all jobs in the same workflow. Parameter is disregarded if the user does not have sufficient access rights. | bool, Optional |
RESULTS
Excerpt | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
The resulting JSON object has these properties:
Each trace has these properties:
The jobs object is a dictionary where the key is the string job id and the value an object as below:
|
EXAMPLES
Code Block |
---|
{
"count": 1,
"items": [
{
"cty": "job",
"traceid": "c0000-12345678910",
"txt": null,
"loc": "en",
"loct": "English",
"dt": "2017-06-19T20:57:49.31",
"uid": 7,
"tsk": "TR",
"tskt": "Translation",
"status": 1,
"statust": "◀Not assigned▶",
"jid": 0000,
"edit": true
}
],
"persons": {
"_7": {
"id": 7,
"nm": "Claude Pont",
"cid": 1,
"cnm": "Wordbee"
}
},
"jobs": {
"_c0000": {
"id": "c0000",
"jobid": 0000,
"iscodyt": true,
"reference": "Wordbee Job Reference",
"tsk": "TR",
"tskt": "Translation",
"src": "en",
"srct": "English",
"trg": "fr",
"trgt": "French",
"branch": "fr",
"brancht": "French",
"status": 0,
"statust": "◀Draft▶",
"assignment": {
"mode": 0,
"modet": "◀Fixed assignment▶",
"cid": null,
"cname": null,
"uid": null,
"uname": null,
"wasAccepted": false
}
}
},
"canAdd": true
} |