DELETE/v2/statuspages/{uuid}/subscribers/{subscriberId}

Delete a subscriber

Removes a subscriber from a status page.

Request

Path Parameters
uuidstringrequired
The status page UUID
Example:"sp_xyz789abc"
subscriberIdnumberrequired
The subscriber ID
Example:12345

Response

Returns confirmation of deletion.

RequestcURL
curl -X DELETE https://api.hyperping.io/v2/statuspages/sp_xyz789abc/subscribers/12345 \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "message": "Subscriber deleted"
}