GET https://api.sorryapp.com/v1/pages/:page_id/subscribers/:subscriber_id
Use this endpoint to get the details of a single subscriber.
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/:subscriber_id \
-H "Authorization: Bearer 129spul0wcxabrfsnscn6lwrledmp2afbuaxgt1w42s74xds70fgln85e4s3"
Example Response
{
"response": {
"id": 659815,
"email": "nic@example-inc.com",
"phone_number": " 44712345678",
"slack_webhook_url": null,
"microsoft_teams_url": null,
"notify_by_email": true,
"notify_by_phone_number": true,
"notify_by_slack_webhook_url": false,
"notify_by_legacy_slack_oauth_token": false,
"notify_by_microsoft_teams_url": false,
"first_name": null,
"last_name": null,
"nickname": null,
"company": null,
"tag_list": [],
"avatar_url": "https://www.gravatar.com/avatar/6147beffaaa80c7a6d41447223c9fc07",
"created_at": "2022-12-05T10:00:14.423Z",
"updated_at": "2022-12-05T10:00:14.415Z"
}
}%