List status pages
curl --request GET \
--url https://api.rootly.com/v1/status-pages \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "status_pages",
"attributes": {
"title": "<string>",
"slug": "<string>",
"public_title": "<string>",
"description": "<string>",
"public_description": "<string>",
"header_color": "<string>",
"footer_color": "<string>",
"allow_search_engine_index": true,
"show_uptime": true,
"show_uptime_last_days": 30,
"success_message": "<string>",
"failure_message": "<string>",
"authentication_enabled": false,
"authentication_password": "<string>",
"website_url": "<string>",
"website_privacy_url": "<string>",
"website_support_url": "<string>",
"ga_tracking_id": "<string>",
"time_zone": "Etc/UTC",
"public": true,
"service_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"external_domain_names": [
"<string>"
],
"enabled": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/status-pages \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "status_pages",
"attributes": {
"title": "<string>",
"slug": "<string>",
"public_title": "<string>",
"description": "<string>",
"public_description": "<string>",
"header_color": "<string>",
"footer_color": "<string>",
"allow_search_engine_index": true,
"show_uptime": true,
"show_uptime_last_days": 30,
"success_message": "<string>",
"failure_message": "<string>",
"authentication_enabled": false,
"authentication_password": "<string>",
"website_url": "<string>",
"website_privacy_url": "<string>",
"website_support_url": "<string>",
"ga_tracking_id": "<string>",
"time_zone": "Etc/UTC",
"public": true,
"service_ids": [
"<string>"
],
"functionality_ids": [
"<string>"
],
"external_domain_names": [
"<string>"
],
"enabled": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}