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": "9bdd484d-b96b-4b71-ae3b-dec0445f4430",
    "type": "workflow_tasks",
    "attributes": {
      "workflow_id": "d051f5cc-d6a7-4c04-895f-347d80f00381",
      "task_params": {
        "task_type": "send_email",
        "from": "Rootly <[email protected]>",
        "to": [
          "delectus"
        ],
        "cc": [],
        "bcc": [],
        "subject": "Pariatur natus reiciendis sit.",
        "preheader": null,
        "body": "Id dolor sint odio.",
        "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-08T19:57:08.939-08:00",
      "updated_at": "2025-12-08T19:57:08.939-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