-
Notifications
You must be signed in to change notification settings - Fork 14
Task Result Response
Chris Churas edited this page Jul 1, 2025
·
7 revisions
The result returned by this service.
{
"id": string // task identifier
"progress": number // 0 - 100 where 100 means complete
"message": string // information about progress of processing or description if failed
"status": string // one of the following: submitted, processing, complete, failed
"result": object (result)
}A number between 0 and 100 denoting the progress of the task. 0 means 0% and 100 means 100% complete
Information about progress of processing or description if failed
The current status of the specified task. Its value should be one of these:
submittedprocessingcompletefailed
Holds the result of the request. Its format varies depending on the action attribute defined in the app definition. See result for more information.
NOTE: If status endpoint is called this will be set to null