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.addresses.actions.acceptSuggestions(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(response.data);{
"data": {
"accepted": true,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"record_type": "address_suggestion"
}
}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.
The UUID of the address that should be accepted.
The ID of the address.
This address suggestion has already been accepted.
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.addresses.actions.acceptSuggestions(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(response.data);{
"data": {
"accepted": true,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"record_type": "address_suggestion"
}
}