Notice Updates
Organization API key — issue one via the Rails console (management UI coming soon)
Status page subdomain (e.g. acme-status)
Transitions the notice to this status. Defaults to the current notice status (i.e. adds an update without changing status).
HTML or plain-text content for the update.
Defaults to current time.
Whether to send email/Slack notifications for this update.
trueCreated
Missing or invalid API key
The account is pending activation. A newly created account must be activated by an administrator before its API key can be used.
Resource not found
Validation failed
POST /api/v1/status_pages/{subdomain}/notices/{notice_id}/updates HTTP/1.1
Host: next.statuspal.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 255
{
"status": "resolved",
"body": "The issue has been resolved. All systems are operational.",
"notify": true,
"service_statuses": [
{
"service_slug": "api",
"container_slug": "eu-region",
"status": "ok"
},
{
"service_slug": "api",
"container_slug": "us-region",
"status": "ok"
}
]
}{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "text",
"body": "text",
"posted_at": "2026-01-01T00:00:00.000Z",
"service_statuses": [
{
"service_slug": "text",
"service_name": "text",
"container_slug": "text",
"container_name": "text",
"status": "ok"
}
]
}
}Organization API key — issue one via the Rails console (management UI coming soon)
Status page subdomain (e.g. acme-status)
Deleted
No content
Missing or invalid API key
The account is pending activation. A newly created account must be activated by an administrator before its API key can be used.
Resource not found
DELETE /api/v1/status_pages/{subdomain}/notices/{notice_id}/updates/{update_id} HTTP/1.1
Host: next.statuspal.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Organization API key — issue one via the Rails console (management UI coming soon)
Status page subdomain (e.g. acme-status)
OK
Missing or invalid API key
The account is pending activation. A newly created account must be activated by an administrator before its API key can be used.
Resource not found
Validation failed
PATCH /api/v1/status_pages/{subdomain}/notices/{notice_id}/updates/{update_id} HTTP/1.1
Host: next.statuspal.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 171
{
"status": "text",
"body": "text",
"posted_at": "2026-01-01T00:00:00.000Z",
"notify": true,
"service_statuses": [
{
"service_slug": "api",
"container_slug": "eu-region",
"status": "ok"
}
]
}{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "text",
"body": "text",
"posted_at": "2026-01-01T00:00:00.000Z",
"service_statuses": [
{
"service_slug": "text",
"service_name": "text",
"container_slug": "text",
"container_name": "text",
"status": "ok"
}
]
}
}Last updated