curl --request PATCH \
--url https://api.example.com/api/flow_runs/{id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"flow_version": "<string>",
"parameters": {},
"empirical_policy": {
"max_retries": 0,
"retry_delay_seconds": 0,
"retries": 123,
"retry_delay": 123,
"pause_keys": [
"<string>"
],
"resuming": false,
"retry_type": "in_process"
},
"tags": [
"<string>"
],
"infrastructure_pid": "<string>",
"job_variables": {}
}
'