import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const notificationProfiles = await client.notificationProfiles.list();
console.log(notificationProfiles.data);{
"data": [
{
"id": "12455643-3cf1-4683-ad23-1cd32f7d5e0a",
"name": "<string>",
"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 profiles.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const notificationProfiles = await client.notificationProfiles.list();
console.log(notificationProfiles.data);{
"data": [
{
"id": "12455643-3cf1-4683-ad23-1cd32f7d5e0a",
"name": "<string>",
"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.
Returns a list of notification profiles.
Show child attributes
A UUID.
"12455643-3cf1-4683-ad23-1cd32f7d5e0a"
A human readable name.
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?