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": "<string>",
"type": "workflow_runs",
"attributes": {
"workflow_id": "<string>",
"status": "queued",
"triggered_by": "system",
"status_message": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"failed_at": "<string>",
"canceled_at": "<string>",
"incident_id": "<string>",
"post_mortem_id": "<string>",
"action_item_id": "<string>",
"alert_id": "<string>",
"pulse_id": "<string>",
"context": {}
}
}
}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": "<string>",
"type": "workflow_runs",
"attributes": {
"workflow_id": "<string>",
"status": "queued",
"triggered_by": "system",
"status_message": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"failed_at": "<string>",
"canceled_at": "<string>",
"incident_id": "<string>",
"post_mortem_id": "<string>",
"action_item_id": "<string>",
"alert_id": "<string>",
"pulse_id": "<string>",
"context": {}
}
}
}