v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Status Pages

Get maintenance

Retrieves a specific maintenance by its ID.

get/api/v2/statuspages/{page_id}/maintenances/{maintenance_id}

Path parameters

page_idstring uuid required

The ID of the status page.

maintenance_idstring uuid required

The ID of the maintenance.

Query parameters

includestring

Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user, status_page.

Response

OK

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"
    }
  ]
}