Retrieves a specific workflow_task by id
curl --request GET \
--url https://api.rootly.com/v1/workflow_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b5115ef7-c993-46dd-9bba-3afa5047baac",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "d76fdd64-20e4-489d-880d-a4a9c3e7b9ef",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"eum"
],
"cc": [],
"bcc": [],
"subject": "Quas libero veritatis quaerat.",
"preheader": null,
"body": "Dolorem odit molestiae tenetur.",
"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-07-29T04:59:22.553-07:00",
"updated_at": "2025-07-29T04:59:22.553-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
workflow_task found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/workflow_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b5115ef7-c993-46dd-9bba-3afa5047baac",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "d76fdd64-20e4-489d-880d-a4a9c3e7b9ef",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"eum"
],
"cc": [],
"bcc": [],
"subject": "Quas libero veritatis quaerat.",
"preheader": null,
"body": "Dolorem odit molestiae tenetur.",
"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-07-29T04:59:22.553-07:00",
"updated_at": "2025-07-29T04:59:22.553-07:00"
}
}
}