Flow Runs
Read Flow Run
Get a flow run by id.
get/api/flow_runs/{id}
Path parameters
idstring uuid required
The flow run id
The flow run id
Headers
x-prefect-api-versionstring
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"
}
}