List incident_role tasks
curl --request GET \
--url https://api.rootly.com/v1/incident_roles/{incident_role_id}/incident_role_tasks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_role_tasks",
"attributes": {
"task": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"incident_role_id": "<string>",
"description": "<string>",
"priority": "high"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
success
Show child attributes
Unique ID of the incident task
incident_role_tasks Show child attributes
The task of the incident task
Date of creation
Date of last update
The description of incident task
The priority of the incident task
high, medium, low Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_roles/{incident_role_id}/incident_role_tasks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_role_tasks",
"attributes": {
"task": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"incident_role_id": "<string>",
"description": "<string>",
"priority": "high"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}