Skip to main content
GET
/
ai
/
integrations
/
connections
/
{user_connection_id}
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const connection = await client.ai.integrations.connections.retrieve('user_connection_id');

console.log(connection.data);
{
  "data": {
    "id": "<string>",
    "integration_id": "<string>",
    "allowed_tools": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user_connection_id
string
required

The connection id

Response

Successful Response

data
IntegrationConnection · object
required