Creates a new workflow run from provided data
curl --request POST \
--url https://api.rootly.com/v1/workflows/{workflow_id}/workflow_runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_runs",
"attributes": {
"immediate": true,
"check_conditions": false,
"context": {}
}
}
}
'{
"data": {
"id": "d310f865-9e8e-4f31-9fcc-05662d175ffb",
"type": "workflow_runs",
"attributes": {
"kind": "incident",
"status": "queued",
"status_message": null,
"triggered_by": "user",
"user_id": 344,
"queued_at": "2026-01-20T11:01:40.798-08:00",
"started_at": null,
"completed_at": null,
"failed_at": null,
"canceled_at": null,
"updated_at": "2026-01-20T11:01:40.798-08:00",
"created_at": "2026-01-20T11:01:40.798-08:00",
"incident_id": "698dfa0d-71f9-4eff-8279-2b96b4761daf",
"post_mortem_id": null,
"action_item_id": null,
"alert_id": null,
"pulse_id": null,
"workflow_id": "4113a54e-0894-4b85-ad93-1345f3a3c27e",
"workflow_name": "The Pianist"
},
"relationships": {
"task_runs": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
workflow run created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/workflows/{workflow_id}/workflow_runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "workflow_runs",
"attributes": {
"immediate": true,
"check_conditions": false,
"context": {}
}
}
}
'{
"data": {
"id": "d310f865-9e8e-4f31-9fcc-05662d175ffb",
"type": "workflow_runs",
"attributes": {
"kind": "incident",
"status": "queued",
"status_message": null,
"triggered_by": "user",
"user_id": 344,
"queued_at": "2026-01-20T11:01:40.798-08:00",
"started_at": null,
"completed_at": null,
"failed_at": null,
"canceled_at": null,
"updated_at": "2026-01-20T11:01:40.798-08:00",
"created_at": "2026-01-20T11:01:40.798-08:00",
"incident_id": "698dfa0d-71f9-4eff-8279-2b96b4761daf",
"post_mortem_id": null,
"action_item_id": null,
"alert_id": null,
"pulse_id": null,
"workflow_id": "4113a54e-0894-4b85-ad93-1345f3a3c27e",
"workflow_name": "The Pianist"
},
"relationships": {
"task_runs": {
"data": []
}
}
}
}