Query Task List
The response code corresponds to the task list being successfully retrieved, and not to the asynchoronous operations themselves. The status of the asynchronous operation(s) can be viewed in the response body.
Tasks are per cell and remain in memory till the respective appliance node is rebooted. This means that tasks that were triggered prior to reboot are lost upon reboot.
query filter. values may be "status==running", "status==failed", or "status==stopped"
sortAsc=field means to sort on field in ascending order. values may be "startedAt" or "stoppedAt"
sortDesc=field means to sort on field in descending order. values may be "startedAt" or "stoppedAt"
The number of pages to skip before starting to collect the result set. page sequence starts at 1.
The number of items that may be returned in a page.
OK
{
"resultTotal": 0,
"pageCount": 0,
"pageSize": 0,
"listOfTasks": [
{
"id": "string",
"result": {
"message": "string",
"result": [
"string"
]
},
"startedAt": "string",
"status": "string",
"stoppedAt": "string",
"url": "string"
}
]
}
How many results there are in total (i.e., considering all pages).
How many pages there are in total.
Result count for page that was fetched.
List of Task objects.
400 BAD REQUEST
404 NOT FOUND
curl -H 'Authorization: <value>' https://{api_host}/api/1.0.0/tasks