Response attributes

Status page subscriber API responses use the JSON:API format.

Attribute Type Description
id string The ID of the status page subscriber.
type string The resource type. The value is status_page_subscriber.
attributes.status_page_id integer The ID of the status page.
attributes.email string The subscriber email address.
attributes.status_page_resource_ids array The resources this subscriber receives updates for. An empty array means all status page resources.
attributes.confirmed_at string When the subscriber was confirmed. API-created subscribers are confirmed immediately.
attributes.created_at string When the subscriber was created.
attributes.updated_at string When the subscriber was last updated.

Example response body

Example
{
  "data": {
    "id": "123456789",
    "type": "status_page_subscriber",
    "attributes": {
      "status_page_id": 987654321,
      "email": "customer@example.com",
      "status_page_resource_ids": [],
      "confirmed_at": "2026-04-29T14:30:00.000Z",
      "created_at": "2026-04-29T14:30:00.000Z",
      "updated_at": "2026-04-29T14:30:00.000Z"
    }
  }
}