Retrieves a specific incident_role_task by id
curl --request GET \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "08756933-dba9-4045-91aa-b22259bdccd5",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "b54430a1-b61a-4ed1-b035-de9382ded6d7",
"task": "Veniam est possimus ab.",
"description": "Fugiat voluptatem at fugit.",
"priority": "medium",
"created_at": "2025-08-01T11:09:20.711-07:00",
"updated_at": "2025-08-01T11:09:20.727-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_role_task found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "08756933-dba9-4045-91aa-b22259bdccd5",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "b54430a1-b61a-4ed1-b035-de9382ded6d7",
"task": "Veniam est possimus ab.",
"description": "Fugiat voluptatem at fugit.",
"priority": "medium",
"created_at": "2025-08-01T11:09:20.711-07:00",
"updated_at": "2025-08-01T11:09:20.727-07:00"
}
}
}