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);}
Retrieve a list of all integration secrets configured by the user.
GET
/
integration_secrets
JavaScript
Copy
Ask AI
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);}