Update status page subscriber

Updates which status page resources an email subscriber receives notifications for.

Only status_page_resource_ids can be changed. To change an email address, remove the old subscriber and create a new one.

PATCH https://uptime.betterstack.com/api/v2/status-pages/{status_page_id}/subscribers/{subscriber_id}

URL parameters

status_page_id
required string
subscriber_id
required string

Headers

Authorization
required string
Content-Type
string

Body parameters

status_page_resource_ids
required array
200

Response body

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

Example cURL

Example
curl --request PATCH \
  --url https://uptime.betterstack.com/api/v2/status-pages/987654321/subscribers/123456789 \
  --header "Authorization: Bearer $TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "status_page_resource_ids": [112233, 112234]
  }'


Looking for the details of a specific parameter?

Explore the list of all status page subscriber API parameters.