Overview
You can poll this endpoint to check the status of an asynchronous task. Thestatus field can have one of the following values:
QUEUED: The task has been received and is waiting to be processed.ENQUEUED: The task has been passed to the processing queue.PROCESSING: The task is actively being processed.COMPLETED: The task has finished successfully. Theresponseobject will contain the full result.FAILED: The task failed to complete. Theresponseobject may contain error details.
QUEUED, ENQUEUED, or PROCESSING state, the response will only contain the current status. Once the task is COMPLETED or FAILED, the response will include a response object containing the full result.
Example usage
Check a pending task
Fetch a completed task
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the task to fetch.