Skip to main content
GET
/
v2
/
incident_participants
List
curl --request GET \
  --url https://api.incident.io/v2/incident_participants \
  --header 'Authorization: Bearer <token>'
{
  "incident_participants": {
    "active": [
      {
        "participant_type": "observer",
        "user": {
          "email": "lisa@incident.io",
          "id": "01FCNDV6P870EA6S7TK1DSYDG0",
          "name": "Lisa Karlin Curtis",
          "role": "owner",
          "slack_user_id": "U02AYNF2XJM"
        }
      }
    ],
    "passive": [
      {
        "participant_type": "observer",
        "user": {
          "email": "lisa@incident.io",
          "id": "01FCNDV6P870EA6S7TK1DSYDG0",
          "name": "Lisa Karlin Curtis",
          "role": "owner",
          "slack_user_id": "U02AYNF2XJM"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key from your incident.io dashboard (Settings → API keys)

Query Parameters

incident_id
string
required

Find participants of this incident

Example:

"01FCNDV6P870EA6S7TK1DSYD5H"

Response

200 - application/json

OK response.

incident_participants
object
required
Example:
{
"active": [
{
"participant_type": "observer",
"user": {
"email": "lisa@incident.io",
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"name": "Lisa Karlin Curtis",
"role": "owner",
"slack_user_id": "U02AYNF2XJM"
}
}
],
"passive": [
{
"participant_type": "observer",
"user": {
"email": "lisa@incident.io",
"id": "01FCNDV6P870EA6S7TK1DSYDG0",
"name": "Lisa Karlin Curtis",
"role": "owner",
"slack_user_id": "U02AYNF2XJM"
}
}
]
}