import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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"
}
}import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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"
}
}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.
Was this page helpful?