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);
Accepts this address suggestion as a new emergency address for Operator Connect and finishes the uploads of the numbers associated with it to Microsoft.
POST
/
addresses
/
{id}
/
actions
/
accept_suggestions
JavaScript
Copy
Ask AI
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);