Better Stack · Schema

StatusPageUpdateRequest

Request body for updating a status page (all fields optional).

IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

Properties

Name Type Description
company_name string New company name.
custom_domain string New custom domain.
theme string New theme.
View JSON Schema on GitHub

JSON Schema

better-stack-status-page-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-status-page-update-request-schema.json",
  "title": "StatusPageUpdateRequest",
  "description": "Request body for updating a status page (all fields optional).",
  "type": "object",
  "properties": {
    "company_name": {
      "type": "string",
      "description": "New company name.",
      "example": "Acme Corp Updated"
    },
    "custom_domain": {
      "type": "string",
      "description": "New custom domain.",
      "example": "status.acme.com"
    },
    "theme": {
      "type": "string",
      "enum": [
        "light",
        "dark"
      ],
      "description": "New theme.",
      "example": "dark"
    }
  }
}