import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const notificationEventConditions = await client.notificationEventConditions.list();
console.log(notificationEventConditions.data);{
"data": [
{
"id": "70c7c5cb-dce2-4124-accb-870d39dbe852",
"name": "from phone number",
"description": "When emergency number dialed from phone number X",
"notification_event_id": "d5c395cd-9864-4609-b5e2-3f9fd4ce201a",
"associated_record_type": "phone_number",
"parameters": [
{
"name": "phone_number",
"optional": false,
"data_type": "string"
}
],
"enabled": true,
"allow_multiple_channels": false,
"asynchronous": true,
"supported_channels": [
"webhook",
"sms",
"email",
"voice"
],
"created_at": "2019-10-15T10:07:15.527Z",
"updated_at": "2019-10-15T10:07:15.527Z"
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}Returns a list of your notifications events conditions.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const notificationEventConditions = await client.notificationEventConditions.list();
console.log(notificationEventConditions.data);{
"data": [
{
"id": "70c7c5cb-dce2-4124-accb-870d39dbe852",
"name": "from phone number",
"description": "When emergency number dialed from phone number X",
"notification_event_id": "d5c395cd-9864-4609-b5e2-3f9fd4ce201a",
"associated_record_type": "phone_number",
"parameters": [
{
"name": "phone_number",
"optional": false,
"data_type": "string"
}
],
"enabled": true,
"allow_multiple_channels": false,
"asynchronous": true,
"supported_channels": [
"webhook",
"sms",
"email",
"voice"
],
"created_at": "2019-10-15T10:07:15.527Z",
"updated_at": "2019-10-15T10:07:15.527Z"
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Consolidated filter parameter (deepObject style). Originally: filter[associated_record_type][eq], filter[channel_type_id][eq], filter[notification_profile_id][eq], filter[notification_channel][eq], filter[notification_event_condition_id][eq], filter[status][eq]
Show child attributes
Returns a list of notification event conditions available.
Show child attributes
A UUID.
"70c7c5cb-dce2-4124-accb-870d39dbe852"
"from phone number"
"When emergency number dialed from phone number X"
"d5c395cd-9864-4609-b5e2-3f9fd4ce201a"
account, phone_number "phone_number"
true
Dictates whether a notification channel id needs to be provided when creating a notficiation setting.
false
Dictates whether a notification setting will take effect immediately.
true
Dictates the supported notification channel types that can be emitted.
["webhook", "sms", "email", "voice"]ISO 8601 formatted date indicating when the resource was created.
"2019-10-15T10:07:15.527Z"
ISO 8601 formatted date indicating when the resource was updated.
"2019-10-15T10:07:15.527Z"
Was this page helpful?