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>"
]
}
}Get user setup integrations
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>"
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The connection id
Was this page helpful?