Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
workflow run created
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": "fc0768a8-39b6-4c9a-8a7d-5425c7a73b90",
"type": "workflow_runs",
"attributes": {
"kind": "incident",
"status": "queued",
"status_message": null,
"triggered_by": "user",
"user_id": 165,
"queued_at": "2025-09-18T20:55:00.362-07:00",
"started_at": null,
"completed_at": null,
"failed_at": null,
"canceled_at": null,
"updated_at": "2025-09-18T20:55:00.362-07:00",
"created_at": "2025-09-18T20:55:00.362-07:00",
"incident_id": "ad55052e-33b6-4ba2-ad35-2617c80c091b",
"post_mortem_id": null,
"action_item_id": null,
"alert_id": null,
"pulse_id": null,
"workflow_id": "e47a5725-eb9c-40eb-b202-083a72912a05",
"workflow_name": "Into the Wild"
},
"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": "fc0768a8-39b6-4c9a-8a7d-5425c7a73b90",
"type": "workflow_runs",
"attributes": {
"kind": "incident",
"status": "queued",
"status_message": null,
"triggered_by": "user",
"user_id": 165,
"queued_at": "2025-09-18T20:55:00.362-07:00",
"started_at": null,
"completed_at": null,
"failed_at": null,
"canceled_at": null,
"updated_at": "2025-09-18T20:55:00.362-07:00",
"created_at": "2025-09-18T20:55:00.362-07:00",
"incident_id": "ad55052e-33b6-4ba2-ad35-2617c80c091b",
"post_mortem_id": null,
"action_item_id": null,
"alert_id": null,
"pulse_id": null,
"workflow_id": "e47a5725-eb9c-40eb-b202-083a72912a05",
"workflow_name": "Into the Wild"
},
"relationships": {
"task_runs": {
"data": []
}
}
}
}