Check out our upcoming events and meetups! View events ā
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.messaging.rcs.listBulkCapabilities({
agent_id: 'TestAgent',
phone_numbers: ['+13125551234'],
});
console.log(response.data);{
"data": [
{
"record_type": "rcs.capabilities",
"phone_number": "+13125551234",
"agent_id": "TestAgent",
"agent_name": "Testing agent",
"features": [
"<string>"
]
}
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.messaging.rcs.listBulkCapabilities({
agent_id: 'TestAgent',
phone_numbers: ['+13125551234'],
});
console.log(response.data);{
"data": [
{
"record_type": "rcs.capabilities",
"phone_number": "+13125551234",
"agent_id": "TestAgent",
"agent_name": "Testing agent",
"features": [
"<string>"
]
}
]
}