get /tasks/{id}
Gets a specific task.
Returns the task specified by the id
parameter.
Path parameters
- id (required)
- The ID of the task.
Return type
Example data
Content-Type: application/json
{
"data" : {
"created" : "2000-01-23T04:56:07.000+00:00",
"lastUpdate" : "2000-01-23T04:56:07.000+00:00",
"lastExecution" : "2000-01-23T04:56:07.000+00:00",
"appId" : "appId",
"name" : "name",
"description" : "description",
"id" : "00000000-0000-0000-0000-000000000000",
"type" : "type",
"enabled" : true
}
}
Responses
- 200
- Success. The task with the specified ID is returned.
- 400
- One of the following errors has occurred:The request syntax is malformed.A task with the specified ID does not exist.
- 404
- The specified task ID was not found.