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": "78388862-6ddf-4326-9966-18e17cc3130e",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "d08779c3-088d-421b-817e-bc4d191d34cb",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"nemo"
],
"cc": [],
"bcc": [],
"subject": "Possimus qui et minus.",
"preheader": null,
"body": "Sed iure aperiam illum.",
"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-09-07T18:20:27.937-07:00",
"updated_at": "2025-09-07T18:20:27.937-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": "78388862-6ddf-4326-9966-18e17cc3130e",
"type": "workflow_tasks",
"attributes": {
"workflow_id": "d08779c3-088d-421b-817e-bc4d191d34cb",
"task_params": {
"task_type": "send_email",
"from": "Rootly <workflows@rootly.com>",
"to": [
"nemo"
],
"cc": [],
"bcc": [],
"subject": "Possimus qui et minus.",
"preheader": null,
"body": "Sed iure aperiam illum.",
"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-09-07T18:20:27.937-07:00",
"updated_at": "2025-09-07T18:20:27.937-07:00"
}
}
}