English
List incident types
curl --request GET \ --url https://api.rootly.com/v1/incident_types \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "type": "incident_types", "attributes": { "name": "<string>", "slug": "<string>", "description": "<string>", "color": "<string>", "position": 123, "notify_emails": [ "<string>" ], "slack_channels": [ { "id": "<string>", "name": "<string>" } ], "slack_aliases": [ { "id": "<string>", "name": "<string>" } ], "created_at": "<string>", "updated_at": "<string>" } } ], "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.
Bearer <token>
<token>
success
The response is of type object.
object
Was this page helpful?