Fetch the status and result of an asynchronous task.
status field can have one of the following values:
QUEUED: The task has been received and is waiting to be processed.PROCESSING: The task is actively being processed.COMPLETED: The task has finished successfully. The response object will contain the full result.FAILED: The task failed to complete. The response object may contain error details.QUEUED 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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the task to fetch.