Work Queues
Read Work Queue Runs
Get flow runs from the work queue.
post/api/work_queues/{id}/get_runs
Path parameters
idstring uuid required
The work queue id
The work queue id
Headers
x-prefect-uiboolean
A header to indicate this request came from the Prefect UI.
A header to indicate this request came from the Prefect UI.
x-prefect-api-versionstring
Request body
Response
Successful Response
Example response
[
{
"name": "my-flow-run",
"deployment_version": "1.0",
"flow_version": "1.0",
"context": {
"my_var": "my_val"
},
"tags": [
"tag-1",
"tag-2"
],
"work_pool_name": "my-work-pool",
"state": {
"message": "Run started"
}
}
]