Skip to main content
GET
/
v2
/
incident_roles
List
curl --request GET \
  --url https://api.incident.io/v2/incident_roles
{
  "incident_roles": [
    {
      "created_at": "2021-08-17T13:28:57.801578Z",
      "description": "The person currently coordinating the incident",
      "id": "01FCNDV6P870EA6S7TK1DSYDG0",
      "instructions": "Take point on the incident; Make sure people are clear on responsibilities",
      "name": "Incident Lead",
      "role_type": "lead",
      "shortform": "lead",
      "updated_at": "2021-08-17T13:28:57.801578Z"
    }
  ]
}

Response

200 - application/json

OK response.

incident_roles
object[]
required
Example:
[
{
"created_at": "2021-08-17T13:28:57.801578Z",
"description": "The person currently coordinating the incident",
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"instructions": "Take point on the incident; Make sure people are clear on responsibilities",
"name": "Incident Lead",
"role_type": "lead",
"shortform": "lead",
"updated_at": "2021-08-17T13:28:57.801578Z"
}
]