Check out our upcoming events and meetups! View events →
Retrieve a list of all integration secrets configured by the user.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const integrationSecret of client.integrationSecrets.list()) {
console.log(integrationSecret.id);
}{
"data": [
{
"record_type": "integration_secret",
"id": "<string>",
"identifier": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page_size": 25,
"page_number": 1,
"total_pages": 10,
"total_results": 250
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Consolidated page parameter (deepObject style). Originally: page[size], page[number]
Show child attributes
Consolidated filter parameter (deepObject style). Originally: filter[type]
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const integrationSecret of client.integrationSecrets.list()) {
console.log(integrationSecret.id);
}{
"data": [
{
"record_type": "integration_secret",
"id": "<string>",
"identifier": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page_size": 25,
"page_number": 1,
"total_pages": 10,
"total_results": 250
}
}