import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const integrationSecrets = await client.integrationSecrets.list();
console.log(integrationSecrets.data);{
"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
}
}Retrieve a list of all integration secrets configured by the user.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const integrationSecrets = await client.integrationSecrets.list();
console.log(integrationSecrets.data);{
"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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?