Creates a new status page from provided data
curl --request POST \
--url https://api.rootly.com/v1/status-pages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "status_pages",
"attributes": {
"title": "<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>"
],
"enabled": true
}
}
}'
{
"data": {
"id": "f061c062-da1d-4e60-8702-87ed75a31d4f",
"type": "status_pages",
"attributes": {
"title": "My Status Page",
"slug": "my-status-page",
"public_title": null,
"description": "My Status Page description",
"public_description": null,
"header_color": "#0061F2",
"footer_color": "#1F2F41",
"allow_search_engine_index": true,
"public": false,
"website_url": null,
"website_privacy_url": null,
"website_support_url": null,
"ga_tracking_id": null,
"time_zone": "Etc/UTC",
"success_message": "All Systems Operational",
"failure_message": "Something's not quite right",
"authentication_enabled": false,
"authentication_password": "[REDACTED]",
"enabled": true,
"functionality_ids": [
"7ba2f10e-82bb-4e60-8529-93a9ca89b2a2"
],
"service_ids": [
"8ad7197b-d22d-4c8a-b970-d0e5867541ea"
],
"allow_email_subscribers": true,
"allow_sms_subscribers": true,
"allow_rss_atom_feeds": true,
"show_uptime": true,
"show_uptime_last_days": 30,
"external_domain_names": [],
"created_at": "2025-08-12T07:00:11.458-07:00",
"updated_at": "2025-08-12T07:00:11.458-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
status_page created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/status-pages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "status_pages",
"attributes": {
"title": "<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>"
],
"enabled": true
}
}
}'
{
"data": {
"id": "f061c062-da1d-4e60-8702-87ed75a31d4f",
"type": "status_pages",
"attributes": {
"title": "My Status Page",
"slug": "my-status-page",
"public_title": null,
"description": "My Status Page description",
"public_description": null,
"header_color": "#0061F2",
"footer_color": "#1F2F41",
"allow_search_engine_index": true,
"public": false,
"website_url": null,
"website_privacy_url": null,
"website_support_url": null,
"ga_tracking_id": null,
"time_zone": "Etc/UTC",
"success_message": "All Systems Operational",
"failure_message": "Something's not quite right",
"authentication_enabled": false,
"authentication_password": "[REDACTED]",
"enabled": true,
"functionality_ids": [
"7ba2f10e-82bb-4e60-8529-93a9ca89b2a2"
],
"service_ids": [
"8ad7197b-d22d-4c8a-b970-d0e5867541ea"
],
"allow_email_subscribers": true,
"allow_sms_subscribers": true,
"allow_rss_atom_feeds": true,
"show_uptime": true,
"show_uptime_last_days": 30,
"external_domain_names": [],
"created_at": "2025-08-12T07:00:11.458-07:00",
"updated_at": "2025-08-12T07:00:11.458-07:00"
}
}
}