List incident roles
curl --request GET \
--url https://api.rootly.com/v1/incident_roles \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_roles",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"summary": "<string>",
"description": "<string>",
"position": 123,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": true
}
}
],
"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 role
incident_roles Show child attributes
The name of the incident role
Date of creation
Date of last update
The slug of the incident role
The summary of the incident role
The description of the incident role
Position of the incident role
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_roles \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_roles",
"attributes": {
"name": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"slug": "<string>",
"summary": "<string>",
"description": "<string>",
"position": 123,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": true
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}