Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
workflow_task deleted
Delete a specific workflow task by id
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b1a0e3bb-d24f-4029-ad57-2a4141df84cd",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "7f3948b1-fafd-4100-8461-4631f3d0995c",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"saepe"
],
"cc": [],
"bcc": [],
"subject": "In quidem quibusdam eos.",
"preheader": null,
"body": "Temporibus dicta blanditiis aut.",
"include_header": true,
"include_footer": true,
"custom_logo_url": null
},
"name": "Send an email",
"position": 1,
"skip_on_failure": false,
"enabled": true,
"created_at": "2025-10-08T19:32:45.441-07:00",
"updated_at": "2025-10-08T19:32:46.471-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow_task deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/workflow_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b1a0e3bb-d24f-4029-ad57-2a4141df84cd",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "7f3948b1-fafd-4100-8461-4631f3d0995c",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"saepe"
],
"cc": [],
"bcc": [],
"subject": "In quidem quibusdam eos.",
"preheader": null,
"body": "Temporibus dicta blanditiis aut.",
"include_header": true,
"include_footer": true,
"custom_logo_url": null
},
"name": "Send an email",
"position": 1,
"skip_on_failure": false,
"enabled": true,
"created_at": "2025-10-08T19:32:45.441-07:00",
"updated_at": "2025-10-08T19:32:46.471-07:00"
}
}
}