GET
/
api
/
routers
/
{router_id}
/
faults
curl --request GET \
  --url https://api.altostrat.io/api/routers/{router_id}/faults \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": [
    {
      "id": "<string>",
      "rid": "<string>",
      "message": "<string>",
      "severity": "<string>",
      "type": "<string>",
      "cause": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "resolved_at": "2023-11-07T05:31:56Z",
      "duration": 123,
      "status": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the Authorization: Bearer <token> header format

Path Parameters

router_id
string
required

The UUID of the router.

Response

200 - application/json
Fault array
status
string
data
object[]