List all outstanding work items​
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 stringtask_name stringdata object
attrs object
- worker string
- retry_counter integer
- deadline string
[
{
"task": {
"task_id": "string",
"task_name": "string",
"data": {},
"attrs": {}
},
"worker": "string",
"retry_counter": 0,
"deadline": "string"
}
]
Loading...