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": "845edcff-d900-4872-a6cf-2af845bcf939",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "1aed49b5-57d1-433d-810c-92508a267198",
"task": "Rerum nemo at repudiandae.",
"description": "Provident labore eum accusamus.",
"priority": "medium",
"created_at": "2025-09-10T23:02:23.045-07:00",
"updated_at": "2025-09-10T23:02:23.054-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": "845edcff-d900-4872-a6cf-2af845bcf939",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "1aed49b5-57d1-433d-810c-92508a267198",
"task": "Rerum nemo at repudiandae.",
"description": "Provident labore eum accusamus.",
"priority": "medium",
"created_at": "2025-09-10T23:02:23.045-07:00",
"updated_at": "2025-09-10T23:02:23.054-07:00"
}
}
}