Skip to main content
GET
/
v1
/
status-pages
/
{id}
/
incidents
/
{incident_id}
/
response-incidents
ListResponseIncidents
curl --request GET \
  --url https://api.incident.io/v1/status-pages/{id}/incidents/{incident_id}/response-incidents
{
  "incidents": [
    {
      "id": "01FDAG4SAH3GYPT98WGR2N7W91",
      "linked_at": "2021-08-17T13:28:57.801578Z"
    }
  ]
}

Path Parameters

id
string
required

ID of the status page

Example:

"abc123"

incident_id
string
required

ID of the status page incident

Example:

"abc123"

Response

200 - application/json

OK response.

incidents
object[]
required
Example:
[
{
"id": "01FDAG4SAH3GYPT98WGR2N7W91",
"linked_at": "2021-08-17T13:28:57.801578Z"
}
]