v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBStatus Pages
Create backfilled maintenance
Creates a backfilled maintenance with predefined updates.
post/api/v2/statuspages/{page_id}/maintenances/backfill
Path parameters
page_idstring uuid required
The ID of the status page.
Query parameters
includestring
Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user, status_page.
Request body
Example request
{
"data": {
"attributes": {
"title": "Past Database Maintenance",
"updates": [
{
"components_affected": [
{
"id": "1234abcd-12ab-34cd-56ef-123456abcdef",
"status": "maintenance"
}
],
"description": "Database maintenance is in progress.",
"started_at": "2026-04-27T13:37:31.038003786Z",
"status": "in_progress"
},
{
"components_affected": [
{
"id": "1234abcd-12ab-34cd-56ef-123456abcdef",
"status": "operational"
}
],
"description": "Database maintenance has been completed successfully.",
"started_at": "2026-04-27T14:37:31.038003786Z",
"status": "completed"
}
]
},
"type": "maintenances"
}
}Response
Created
Example response
{
"data": {
"attributes": {
"components_affected": [
{
"id": "1234abcd-12ab-34cd-56ef-123456abcdef",
"status": "operational"
}
],
"updates": [
{
"components_affected": [
{
"id": "1234abcd-12ab-34cd-56ef-123456abcdef",
"status": "operational"
}
]
}
]
},
"relationships": {
"created_by_user": {
"data": {
"type": "users"
}
},
"last_modified_by_user": {
"data": {
"type": "users"
}
},
"status_page": {
"data": {
"type": "status_pages"
}
}
},
"type": "maintenances"
},
"included": [
{
"type": "users"
}
]
}