Remove status page subscriber

Removes an email subscriber from a status page. You can remove the subscriber by ID or by exact email address.

Removing a subscriber creates an unsubscribe record for that email address.

DELETE 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
DELETE https://uptime.betterstack.com/api/v2/status-pages/{status_page_id}/subscribers?email={email}

URL parameters

status_page_id
required string

Query parameters

email
required string

Headers

Authorization
required string
204

Example cURL

Remove by ID
curl --request DELETE \
  --url https://uptime.betterstack.com/api/v2/status-pages/987654321/subscribers/123456789 \
  --header "Authorization: Bearer $TOKEN"


Remove by email
curl --request DELETE \
  --url "https://uptime.betterstack.com/api/v2/status-pages/987654321/subscribers?email=customer@example.com" \
  --header "Authorization: Bearer $TOKEN"