Retrieving All Running Tasks
GET
https://routecloud.telogis.com/v1/tasks.- Authentication required.
- Response body: task_list_response.
Retrieve a list of all currently running tasks.
Status codes
200
- Success.401
- Authentication required.
task_list_response
Name | Type | Description |
---|---|---|
tasks | task_status_response[] | An array of running tasks. |
Example
GET https://routecloud.telogis.com/v1/tasks HTTP/1.1
X-Telogis-Session-Id: e938d41c-d519-4f07-b0a9-26d4745d6e74
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
{
"tasks": [
{
"task_id": "PUZlKb2tbE~df1kFo6vn2w",
"status": "running",
"started_time": "2016-03-30T00:58:52.049863"
}, {
"task_id": "v4AQjZm1eUW0gFnECtxqAw",
"status": "running",
"started_time": "2016-03-30T00:58:52.049863"
}
]
}