get /tasks/{taskId}/executions/{id}

Gets a specific task execution.

Returns the task execution of for the task specified by the taskId and id parameters.

Path parameters

taskId (required)
The ID of the task.
id (required)
The ID of the task execution.

Return type

TaskExecutionResponse

Example data

Content-Type: application/json

{ "data" : { "result" : "aeiou", "task" : "00000000-0000-0000-0000-000000000000", "created" : "2000-01-23T04:56:07.000+00:00", "lastUpdate" : "2000-01-23T04:56:07.000+00:00", "progress" : 0.8008282, "id" : "00000000-0000-0000-0000-000000000000", "completed" : "{}", "type" : "publish", "priority" : 6.0274563, "status" : "WaitingForRetry" } }

Responses

200
Success. The specified task execution is returned.

400
One of the following errors has occurred:The request syntax is malformed.The specified ID is not a valid GUID.

404
One of the following errors has occurred:A task execution with the specified ID does not exist.A task with the specified ID does not exist.