Download OpenAPI specification:Download
Here you'll learn how to leverage the power of StatusPal through its API to query your status page's status, create and update incidents, push custom metrics and more.
https://statuspal.io/api/v2
(US servers)https://statuspal.eu/api/v2
(EU servers)If you need some assistance please email us at support@statuspal.io.
curl https://statuspal.io/api/v2/hello \
-H 'Accept: application/json' \
-H 'Content-Type: application/json'
All datetime fields are stored in UTC and follow ISO 8601 standard (2022-01-01T00:00:00
).
Some endpoints require authentication in order to be used, you'll need to pass your API
key in the Authorization
header, you can find your API key in your
User Account page or under your organization's
"Security > API" Keys page.
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 investigating" }]
}
}'
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "status_page": {
- "url": "google.com",
- "time_zone": "Etc/UTC",
- "subdomain": "google",
- "name": "Google",
- "current_incident_type": "major"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
serviceId required | integer The ID of a service |
{- "service": {
- "name": "Monitoring service",
- "id": 0,
- "current_incident_type": "major",
- "children": [
- { }
]
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "status_page": {
- "url": "google.com",
- "time_zone": "Etc/UTC",
- "subdomain": "google",
- "name": "Google",
- "current_incident_type": "major"
}, - "services": [
- {
- "name": "Monitoring service",
- "id": 0,
- "current_incident_type": "major",
- "children": [
- { }
]
}
], - "incidents": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "maintenances": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "scheduled",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "upcoming_maintenances": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "scheduled",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "info_notices": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
], - "current_status_type": "major"
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
serviceId required | integer The ID of a service |
{- "service": {
- "name": "Monitoring service",
- "id": 0,
- "current_incident_type": "major",
- "children": [
- { }
]
}, - "incidents": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "maintenances": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "scheduled",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "upcoming_maintenances": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "scheduled",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "info_notices": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
], - "current_status_type": "major"
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of incidents to return in the response. This defaults to 20 items, and can be a maximum of 100. |
type | string Example: type=major Filter incidents by incident type key. |
{- "incidents": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/incidents?after=cUrSoR",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The incident
object (Incident) An incident, either major, minor or a scheduled maintenance |
{- "incident": {
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}
}
}
{- "incident": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
incidentId required | integer The ID of an incident/maintenance |
{- "incident": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
}
incidentId required | integer The ID of an incident/maintenance |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The incident
object (Incident) An incident, either major, minor or a scheduled maintenance |
{- "incident": {
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}
}
}
{- "incident": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "starts_at": "2022-01-01T00:00:00",
- "ends_at": "2022-01-01T00:00:00",
- "type": "major",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}, - "notify": true,
- "maintenance_notify": true,
- "maintenance_notify_settings": {
- "before_notice_minutes": 7200,
- "second_before_notice_minutes": 0,
- "on_start": true,
- "on_end": true
}, - "affects_uptime": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
incidentId required | integer The ID of an incident/maintenance |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
incidentId required | integer The ID of an incident/maintenance |
The update
object (IncidentActivity) Communicates an update of an incident, the special type |
{- "update": {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
}
{- "update": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
incidentId required | integer The ID of an incident/maintenance |
updateId required | integer |
The update
object (IncidentActivity) Communicates an update of an incident, the special type |
{- "update": {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
}
{- "update": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
incidentId required | integer The ID of an incident/maintenance |
updateId required | integer |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of information notices to return in the response. This defaults to 20 items, and can be a maximum of 100. |
{- "info_notices": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/info_notices?after=cUrSoR",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The information notice
object (InfoNotice) An information notice |
{- "info_notice": {
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
}
{- "info_notice": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
infoNoticeId required | integer The ID of an information notice |
{- "info_notice": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
}
infoNoticeId required | integer The ID of an information notice |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The information notice
object (InfoNotice) An information notice |
{- "info_notice": {
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "notify": true,
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
}
{- "info_notice": {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "title": "We are having issues with the DB connection",
- "featured_from": "2022-01-01T00:00:00",
- "featured_until": "2022-01-01T00:00:00",
- "service_ids": [
- 1
], - "updates": [
- {
- "id": 89,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "posted_at": "2022-01-01T00:00:00",
- "type": "issue",
- "description": "We have detected an issue with our CDN",
- "description_html": "<p>We have detected an issue with our CDN</p>",
- "translations": {
- "en": {
- "description": "English description"
}, - "es": {
- "description": "Spanish description"
}
}, - "subscribers_notified_at": "2022-01-01T00:00:00",
- "tweet": true
}
], - "translations": {
- "en": {
- "title": "English Title"
}, - "es": {
- "title": "Spanish Title"
}
}
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
infoNoticeId required | integer The ID of an information notice |
{- "error": 401
}
These endpoints are the same as Incident Updates endpoints, but it doesn't support the type
attribute.
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of metrics to return in the response. This defaults to 20 items, and can be a maximum of 100. |
{- "metrics": [
- {
- "id": 0,
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "status": "connect_timeout",
- "latest_entry_time": 1679314774,
- "threshold": 10,
- "featured_number": "avg",
- "order": 1,
- "integration_id": "string"
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/metrics?after=cUrSoR",
- "prev": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/metrics?before=cUrSoR"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The metric
object (Metric) Represents a metric in a status page, including creation/updating and retrieval contexts. |
{- "metric": {
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "threshold": 10,
- "featured_number": "avg",
- "integration_id": "string"
}
}
{- "metric": {
- "id": 0,
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "status": "connect_timeout",
- "latest_entry_time": 1679314774,
- "threshold": 10,
- "featured_number": "avg",
- "order": 1,
- "integration_id": "string"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
metricId required | integer The ID of a custom metric |
{- "metric": {
- "id": 0,
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "status": "connect_timeout",
- "latest_entry_time": 1679314774,
- "threshold": 10,
- "featured_number": "avg",
- "order": 1,
- "integration_id": "string"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
metricId required | integer The ID of a custom metric |
{- "error": 401
}
metricId required | integer The ID of a custom metric |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The metric
object (Metric) Represents a metric in a status page, including creation/updating and retrieval contexts. |
{- "metric": {
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "threshold": 10,
- "featured_number": "avg",
- "integration_id": "string"
}
}
{- "metric": {
- "id": 0,
- "title": "Website Response Time",
- "unit": "ms",
- "type": "up",
- "enabled": true,
- "visible": true,
- "remote_id": "9dd9dee9-bf3d-4f2a-9cb6-c8e623b7df5a",
- "remote_name": "StatusPal",
- "status": "connect_timeout",
- "latest_entry_time": 1679314774,
- "threshold": 10,
- "featured_number": "avg",
- "order": 1,
- "integration_id": "string"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
metricId required | integer The ID of a custom metric |
The metric entry
object (MetricEntry) |
{- "entry": {
- "time": 1561318904,
- "value": 130
}
}
{- "entry": {
- "time": 1561318904,
- "value": 130
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
filter | string Filters by email address or phone number. In order to search by phone number, the following is supported:
|
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of subscriptions to return in the response. This defaults to 20 items, and can be a maximum of 100. |
{- "subscriptions": [
- {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/subscriptions?after=cUrSoR",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The subscription
object (Subscription) |
{- "subscription": {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
}
}
{- "subscription": {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
subscriptionId required | string The ID of a subscription |
{- "subscription": {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
subscriptionId required | string The ID of a subscription |
The subscription
object (Subscription) |
{- "subscription": {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
}
}
{- "subscription": {
- "type": "email",
- "filter": "services",
- "service_ids": [
- 1
], - "incident_types": [
- "major"
], - "incident_id": 123,
- "email": "jane@doe.com",
- "confirm": true,
- "country_dial_code": "49",
- "phone_number": "12345678900",
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
subscriptionId required | string The ID of a subscription |
{- "error": 401
}
organizationId required | integer The ID of the organization |
{- "status_pages": [
- {
- "organization_id": 0,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "logo": null,
- "bg_image": null,
- "favicon": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
], - "links": {
- "next": "string",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
organizationId required | integer The ID of the organization |
The status page
object (OrganizationStatusPage) Represents the Status Page. |
{- "status_page": {
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
}
{- "status_page": {
- "organization_id": 0,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "logo": null,
- "bg_image": null,
- "favicon": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
}
organizationId required | integer The ID of the organization |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "status_page": {
- "organization_id": 0,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "logo": null,
- "bg_image": null,
- "favicon": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
}
organizationId required | integer The ID of the organization |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The status page
object (OrganizationStatusPage) Represents the Status Page. |
{- "status_page": {
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
}
{- "status_page": {
- "organization_id": 0,
- "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00",
- "name": "Acme",
- "url": "acme.com",
- "time_zone": "Etc/UTC",
- "subdomain": "acme-com",
- "support_email": "support@acme.com",
- "twitter_public_screen_name": null,
- "about": null,
- "display_about": true,
- "custom_domain_enabled": false,
- "domain": null,
- "restricted_ips": null,
- "member_restricted": false,
- "scheduled_maintenance_days": 7,
- "custom_js": null,
- "head_code": null,
- "date_format": null,
- "time_format": null,
- "date_format_enforce_everywhere": false,
- "display_calendar": true,
- "hide_watermark": false,
- "minor_notification_hours": 6,
- "major_notification_hours": 3,
- "maintenance_notification_hours": 6,
- "history_limit_days": null,
- "custom_incident_types_enabled": false,
- "info_notices_enabled": true,
- "locked_when_maintenance": false,
- "noindex": false,
- "enable_auto_translations": false,
- "captcha_enabled": true,
- "enable_embedding": true,
- "translations": {
- "en": {
- "public_company_name": "Your company",
- "header_logo_text": "Your company status page"
}, - "es": {
- "public_company_name": "Votre entreprise",
- "header_logo_text": "Page d'état de votre entreprise"
}
}, - "header_logo_text": "Status Page Name Status",
- "public_company_name": null,
- "logo": null,
- "bg_image": null,
- "favicon": null,
- "display_uptime_graph": true,
- "uptime_graph_days": 90,
- "current_incidents_position": "below_services",
- "theme_selected": "default",
- "theme_configs": null,
- "link_color": "0c91c3",
- "header_bg_color1": "009688",
- "header_bg_color2": "0c91c3",
- "header_fg_color": "ffffff",
- "incident_header_color": "009688",
- "incident_link_color": null,
- "status_ok_color": "48CBA5",
- "status_minor_color": "FFA500",
- "status_major_color": "e75a53",
- "status_maintenance_color": "5378c1",
- "custom_css": null,
- "custom_header": null,
- "custom_footer": null,
- "notify_by_default": false,
- "tweet_by_default": false,
- "slack_subscriptions_enabled": null,
- "discord_notifications_enabled": false,
- "teams_notifications_enabled": false,
- "google_chat_notifications_enabled": false,
- "mattermost_notifications_enabled": false,
- "sms_notifications_enabled": null,
- "feed_enabled": true,
- "calendar_enabled": false,
- "google_calendar_enabled": false,
- "subscribers_enabled": true,
- "notification_email": null,
- "reply_to_email": null,
- "tweeting_enabled": true,
- "email_layout_template": null,
- "email_confirmation_template": null,
- "email_notification_template": null,
- "email_templates_enabled": null
}
}
organizationId required | integer The ID of the organization |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "services": [
- {
- "id": 0,
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "inbound_email_address": "string",
- "incoming_webhook_url": "string",
- "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "is_up": true,
- "pause_monitoring_during_maintenances": true,
- "inbound_email_id": "string",
- "auto_incident": true,
- "auto_notify": true,
- "children_ids": [
- 0
], - "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
], - "links": {
- "next": "string",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The service
object (Service) Represents the service. |
{- "service": {
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "pause_monitoring_during_maintenances": true,
- "auto_incident": true,
- "auto_notify": true,
- "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
}
{- "service": {
- "id": 0,
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "inbound_email_address": "string",
- "incoming_webhook_url": "string",
- "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "is_up": true,
- "pause_monitoring_during_maintenances": true,
- "inbound_email_id": "string",
- "auto_incident": true,
- "auto_notify": true,
- "children_ids": [
- 0
], - "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
serviceId required | integer The ID of a service |
{- "service": {
- "id": 0,
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "inbound_email_address": "string",
- "incoming_webhook_url": "string",
- "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "is_up": true,
- "pause_monitoring_during_maintenances": true,
- "inbound_email_id": "string",
- "auto_incident": true,
- "auto_notify": true,
- "children_ids": [
- 0
], - "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
}
serviceId required | integer The ID of a service |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The service
object (Service) Represents the service. |
{- "service": {
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "pause_monitoring_during_maintenances": true,
- "auto_incident": true,
- "auto_notify": true,
- "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
}
{- "service": {
- "id": 0,
- "name": "Monitoring service",
- "description": "Some description",
- "private_description": "Some private description",
- "parent_id": 0,
- "current_incident_type": "major",
- "monitoring": null,
- "webhook_monitoring_service": "status-cake",
- "webhook_custom_jsonpath_settings": {
- "jsonpath": "$.status",
- "expected_result": "\"up\""
}, - "inbound_email_address": "string",
- "incoming_webhook_url": "string",
- "ping_url": "string",
- "incident_type": "major",
- "parent_incident_type": "major",
- "is_up": true,
- "pause_monitoring_during_maintenances": true,
- "inbound_email_id": "string",
- "auto_incident": true,
- "auto_notify": true,
- "children_ids": [
- 0
], - "translations": {
- "en": {
- "name": "English Name",
- "description": "English description"
}, - "es": {
- "name": "Spanish Name",
- "description": "Spanish description"
}
}, - "private": true,
- "display_uptime_graph": true,
- "display_response_time_chart": true,
- "order": 0
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
serviceId required | integer The ID of a service |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "webhooks": [
- {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
]
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The webhook
object (Webhook) |
{- "webhook": {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
}
{- "webhook": {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
webhookId required | integer The ID of a webhook |
{- "webhook": {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
webhookId required | integer The ID of a webhook |
The webhook
object (Webhook) |
{- "webhook": {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
}
{- "webhook": {
- "url": "url",
- "events": [
- "incident.created",
- "incident.updated"
], - "enabled": true
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
webhookId required | integer The ID of a webhook |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "access_groups": [
- {
- "id": 3,
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
]
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The access group
object (AccessGroup) |
{- "access_group": {
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
}
{- "access_group": {
- "id": 3,
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
accessGroupId required | integer The ID of an access group |
{- "access_group": {
- "id": 3,
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
accessGroupId required | integer The ID of an access group |
The access group
object (AccessGroup) |
{- "access_group": {
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
}
{- "access_group": {
- "id": 3,
- "name": "name",
- "service_ids": [
- 1
], - "users_status_pages": [
- 1
]
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
accessGroupId required | integer The ID of an access group |
{- "error": 401
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of subscriptions to return in the response. This defaults to 20 items, and can be a maximum of 100. |
string Filter the members by email. |
{- "members": [
- {
- "id": 5,
- "email": "jane@doe.com",
- "role": "v",
- "enabled": true,
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/members?after=cUrSoR",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
The membership
object |
{- "member": {
- "email": "jane@doe.com",
- "role": "v",
- "enabled": true
}
}
{- "member": {
- "id": 5,
- "email": "jane@doe.com",
- "role": "v",
- "enabled": true,
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
memberId required | integer The ID of a membership |
The membership
object (StatusPageMember) |
{- "member": {
- "role": "v",
- "enabled": true
}
}
{- "member": {
- "id": 5,
- "email": "jane@doe.com",
- "role": "v",
- "enabled": true,
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
memberId required | integer The ID of a membership |
{- "error": 401
}
organizationId required | integer The ID of the organization |
before | string Used as a cursor for pagination. |
after | string Used as a cursor for pagination. |
limit | integer Set the number of subscriptions to return in the response. This defaults to 20 items, and can be a maximum of 100. |
string Filter the members by email. |
{- "members": [
- {
- "id": 8,
- "email": "jane@doe.com",
- "role": "v",
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
], - "links": {
- "next": "{STATUSPAL_HOST}/api/v2/orgs/{organizationId}/members?after=cUrSoR",
- "prev": "string"
}, - "meta": {
- "total_count": 100
}
}
organizationId required | integer The ID of the organization |
The membership
object |
{- "member": {
- "email": "jane@doe.com",
- "role": "v"
}
}
{- "member": {
- "id": 8,
- "email": "jane@doe.com",
- "role": "v",
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
organizationId required | integer The ID of the organization |
memberId required | integer The ID of a membership |
The membership
object (OrganizationMember) |
{- "member": {
- "role": "v"
}
}
{- "member": {
- "id": 8,
- "email": "jane@doe.com",
- "role": "v",
- "user": {
- "last_sign_in_at": "2022-01-01T00:00:00"
}, - "inserted_at": "2022-01-01T00:00:00",
- "updated_at": "2022-01-01T00:00:00"
}
}
integrationId required | integer The ID of integration |
subdomain required | string The subdomain of your status page. You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/ |
{- "remote_checks": [
- {
- "remote_name": "string",
- "remote_id": "string"
}
]
}