List all outstanding work items
GET/work/list
All work items that are initiated but not done are listed via this endpoint.
Responses​
- 200
The list of all outstanding work items
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
task
object
task_id string
task_name string
data
object
property name* any
attrs
object
property name* any
worker string
retry_counter integer
deadline string
[
{
"task": {
"task_id": "string",
"task_name": "string",
"data": {},
"attrs": {}
},
"worker": "string",
"retry_counter": 0,
"deadline": "string"
}
]
Loading...