List Emergency Notification Recipient Endpoint Associations
Endpoint for listing your emergency notification recipients' endpoint associations
Request URL
GET
https://evs-api.bandwidth.com/api/v1/notifications/notificationRecipients/{recipientId}/associations
Supported Query Paramaters
Paramater | Mandatory | Type | Description |
---|---|---|---|
page | No | integer | Results page. Default value is 1 |
size | No | integer | Number of records returned. Default value is 5,000. Max is 10,000 |
from | No | integer | Record number to start results from |
GET https://evs-api.bandwidth.com/api/v1/notifications/notificationRecipients/{recipientId}/associations HTTP/1.1
Authorization: Basic YXBpVG9rZW46YXBpU2VjcmV0
The above command returns a JSON Response structured like this:
HTTP/1.1 200 OK
Content-Type: application/json
Link: <{url}>; rel="prev"
Link: <{url}>; rel="next"
{
"endpoints": [
{
"id": "14145556570",
"callback": "14145556570",
"name": "4035_TEST",
"lang": "en",
"primaryLocation": "locationId1",
"activated": "2020-01-29T20:54:13.878Z",
"created": "2020-01-29T20:54:13.878Z",
"updated": "2020-01-29T20:54:13.878Z"
},
{
"id": "14145556335",
"callback": "14145556335",
"name": "4035_TEST",
"lang": "en",
"primaryLocation": "locationId1",
"activated": "2020-01-29T20:54:13.878Z",
"created": "2020-01-29T20:54:13.907Z",
"updated": "2020-01-29T20:54:13.907Z"
}
]
}