import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const connections = await client.ai.integrations.connections.list();
console.log(connections.data);{
"data": [
{
"id": "<string>",
"integration_id": "<string>",
"allowed_tools": [
"<string>"
]
}
]
}List user setup integrations
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const connections = await client.ai.integrations.connections.list();
console.log(connections.data);{
"data": [
{
"id": "<string>",
"integration_id": "<string>",
"allowed_tools": [
"<string>"
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?