Status
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/subdomain).
A status page's status
Represents the status summary of a status page
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
Unexpected error.
GET /api/v2/status_pages/{subdomain}/status HTTP/1.1
Host: statuspal.io
Accept: */*
{
"status_page": {
"url": "google.com",
"time_zone": "Etc/UTC",
"subdomain": "google",
"name": "Google",
"current_incident_type": "major"
}
}Get the status reported on a status page service
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/subdomain).
The ID of a service
A service's status
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
Unexpected error.
GET /api/v2/status_pages/{subdomain}/services/{serviceId}/status HTTP/1.1
Host: statuspal.io
Accept: */*
{
"service": {
"name": "Monitoring service",
"id": 1,
"current_incident_type": "major",
"children": [
{
"name": "Monitoring service",
"id": 1,
"current_incident_type": "major",
"children": [
{
"name": "Monitoring service",
"id": 1,
"current_incident_type": "major",
"children": "[Circular Reference]"
}
]
}
]
}
}Last updated