Skip to main content
GET
/
v1
/
workflow_tasks
/
{id}
Retrieves a workflow task
curl --request GET \
  --url https://api.rootly.com/v1/workflow_tasks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1dc396ff-8ea4-4caa-91cf-633b49d7f7ab",
    "type": "workflow_tasks",
    "attributes": {
      "workflow_id": "98fb0baa-1013-4557-9b9f-ed581e42f0ec",
      "task_params": {
        "task_type": "send_email",
        "from": "Rootly <[email protected]>",
        "to": [
          "aut"
        ],
        "cc": [],
        "bcc": [],
        "subject": "Ea adipisci incidunt in.",
        "preheader": null,
        "body": "Quos occaecati vel eveniet.",
        "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-12-16T18:10:39.591-08:00",
      "updated_at": "2025-12-16T18:10:39.591-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

workflow_task found

data
object
required