GET https://api.sorryapp.com/v1/pages/:page_id/subscribers
Get a list of all subscribers for a status page.
Note: This GET request requires an authorization token in order to obtain the subscriber data.
Example Request
curl -X GET https://api.sorryapp.com/v1/pages/:page_id/subscribers \
-H "Authorization: Bearer 129spul0wcxabrfsnscn6lwrledmp2afbuaxgt1w42s74xds70fgln85e4s3"
Example Response
{
"response": [
{
"id": 1234567,
"email": "nic@example-inc.com",
"phone_number": null,
"slack_webhook_url": null,
"microsoft_teams_url": null,
"notify_by_email": true,
"notify_by_phone_number": false,
"notify_by_slack_webhook_url": false,
"notify_by_legacy_slack_oauth_token": false,
"notify_by_microsoft_teams_url": false,
"first_name": "Nic",
"last_name": "Coates",
"nickname": "Nic Test",
"company": null,
"tag_list": [],
"avatar_url": "https://www.gravatar.com/avatar/6147beffaaa80c7a6d41447223c9fc07",
"created_at": "2022-12-05T07:50:37.931Z",
"updated_at": "2022-12-05T07:51:04.123Z"
}
],
"count": 1
}