Retrieves comments and status history for the specific job.
NOT IMPLEMENTED
URL
(GET) /jobs/{id}/traces
PARAMETERS
URL parameters are:
id | The job ID. Also see jobs/{id}/summary | string, Mandatory |
RESULTS
The resulting JSON object has these properties:
count | Total number of traces. | int |
items | Array with the list of traces, see below. | object[] |
Each trace has these properties:
id | The ID of the trace. | int |
job | The job to which this trace refers to. See properties below. | object |
origin | The origin of the trace: The person who triggered it. This may be the person assigned to the job, or the manager or someone else. | bool |
date | The date of the trace. | datetime |
msg | Optional message with the trace. Typically used with traces that are messages. | string |
status | The job status at the time. Numeric status, see Job Status | int |
statust | The job status title. | string |
The origin property has these elements:
uid | The person id. | int |
cid | The company id. | int |
cname | The company name. | string |
fname | First name. If the person was deleted the name will be "(deleted)" | string |
lname | Last name. | string |
title | Optional title of person. Nullable. | string? |
code | Optional code of person. Platform defined purpose. If not assigned then empty string. | string |
Email address. | string | |
role | Optional role of person within the company. Nullable | string? |
phone | Optional phone. Nullable | string? |
phoneMobile | Optional mobile phone. Nullable | string? |
The job property has these elements:
id | The globally unique ID of the job (which encodes jobid + iscodyt) | string |
jobid | The numeric job id (unique for Standard and Codyt respectively) | int |
iscodyt | True: A Codyt job. False: A standard job. | bool |
reference | The reference of the job. With Codyt jobs this is the job's document name. | string |
task | The task code of the job (TR, RV...) | string |
taskt | The task title (Translation, Revision...) | string |
src / srct | Source language code and name | string |
trg / trgt | Target language code and name | string |
branch / brancht | Branch language code and name. In general the branch locale is identical to the target locale. It may be different where a workflow involves a back translation or translation into pivot languages. | string |
status | The job status as a number. | int |
statust | The job status name. | string |
EXAMPLES