Skip to main content
GET
/
api
/
domains
/
{id}
/
incidents
/
recent
Get recent incidents for domain
curl --request GET \
  --url https://api.ipulse.one/api/domains/{id}/incidents/recent \
  --header 'Authorization: Bearer <token>'
{
  "incidents": [
    {
      "id": "<string>",
      "title": "<string>",
      "status": "<string>",
      "severity": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "resolved_at": "2023-11-07T05:31:56Z",
      "duration_seconds": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Query Parameters

limit
integer
default:10
Required range: 1 <= x <= 50

Response

200 - application/json

Recent incidents

incidents
object[]