Skip to main content
Skip table of contents

Task Status

URI

GET: /v1/task/:taskId

Success response

Successful task status request will return 200 (OK) and JSON.

Response JSON

startDateTime: date and time when task processing started i.e when template compose started.

endDateTime: date and time when task processing finished i.e when template compose finished.

completed: true if task is completed.

errors: true if completed task produced errors.

results: array containing all resultID values of files created by store command during compose (deprecated).

resultList: array containing result objects with “id” and “url” properties. URL can be used to fetch the result created by store command.

statusMessage: task status: “Received“, “Queued“, “Running”, “Ready”.

statusDescription: textual status description.

logs: task compose log entries (only SEVERE messages).

CODE
{
    "startDateTime": "2023-03-07T10:26:35.405631389Z",
    "endDateTime": "2023-03-07T10:26:47.781174583Z",
    "completed": true,
    "errors": false,
    "results": [],
    "resultList": [],
    "statusMessage": "Ready",
    "statusDescription": "Ready",
    "log": []
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.