Authentication
curl -X POST \
https://statuspal.io/api/v2/status_pages/:subdomain/incidents \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: <your-api-key>' \
-d '{
"incident": {
"type": "major",
"title": "DB connection issues",
"service_ids": [1],
"updates": [{ "type": "issue", "description": "We are investigating" }]
}
}'Last updated