Skip to main content

List all Notifications Events

GET 
/notification_events

Returns a list of your notifications events.

Request

Query Parameters

    page[number] integer

    Possible values: >= 1

    Default value: 1

    The page number to load

    page[size] integer

    Possible values: >= 1 and <= 250

    Default value: 20

    The size of the page

Responses

200: Returns a list of notification events available.

default: Unexpected error

Request samples


curl -L 'https://api.telnyx.com/v2/notification_events' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"id": "d5c395cd-9864-4609-b5e2-3f9fd4ce201a",
"name": "Emergency Number Dialed",
"notification_category": "Calls",
"enabled": true,
"created_at": "2019-10-15T10:07:15.527Z",
"updated_at": "2019-10-15T10:07:15.527Z"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}