Check out our upcoming events and meetups! View events ā
Adds a test phone number to an RCS agent for testing purposes.
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.inviteTestNumber('phone_number', { id: 'id' });
console.log(response.data);{
"data": {
"record_type": "rcs.test_number_invite",
"agent_id": "TestAgent",
"phone_number": "+13125551234",
"status": "PENDING"
}
}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.
RCS agent ID
Phone number in E164 format to invite for testing
Test number successfully invited to RCS agent
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.inviteTestNumber('phone_number', { id: 'id' });
console.log(response.data);{
"data": {
"record_type": "rcs.test_number_invite",
"agent_id": "TestAgent",
"phone_number": "+13125551234",
"status": "PENDING"
}
}