Skip to main content
GET
/
integration_secrets
JavaScript
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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
object

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

filter
object

Consolidated filter parameter (deepObject style). Originally: filter[type]

Response

Successful Response

data
IntegrationSecret · object[]
required
meta
Metadata · object
required