Get task status.
GET: /v1/task/:taskId
Successful task status request will return 200 (OK) and 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).
{ "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": [] }