List all outstanding work items
GEThttps://localhost:8900/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
worker string
retry_counter integer
deadline string
[
{
"task": {
"task_id": "string",
"task_name": "string",
"data": {},
"attrs": {}
},
"worker": "string",
"retry_counter": 0,
"deadline": "string"
}
]
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://localhost:8900/work/list' \
-H 'Accept: application/json'