Skip to main content

List integration secrets

GET 
/integration_secrets

Retrieve a list of all integration secrets configured by the user.

Request

Query Parameters

    page[size] Page Size
    page[number] Page Number
    filter[type] Filter by type

    Possible values: [bearer, basic]

Responses

200: Successful Response

Request samples


curl -L 'https://api.telnyx.com/v2/integration_secrets' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"record_type": "integration_secret",
"id": "string",
"identifier": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}
],
"meta": {
"page_size": 25,
"page_number": 1,
"total_pages": 10,
"total_results": 250
}
}