GET
/
v1
/
workflow_tasks
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/workflow_tasks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "7f339db9-aff0-4e21-8606-1ad351973a6f",
    "type": "workflow_tasks",
    "attributes": {
      "workflow_id": "f9de6175-af5c-4136-8375-f4824cbae73c",
      "task_params": {
        "task_type": "send_email",
        "from": "Rootly <workflows@rootly.com>",
        "to": [
          "architecto"
        ],
        "cc": [],
        "bcc": [],
        "subject": "Consequatur beatae voluptas aut.",
        "preheader": null,
        "body": "Quidem et et 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-06-19T02:39:47.789-07:00",
      "updated_at": "2025-06-19T02:39:47.789-07: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

200
application/vnd.api+json

workflow_task found

The response is of type object.