Retrieves the details of an existing user address.
GET
/
user
/
addresses
/
{id}
JavaScript
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const userAddress = await client.userAddresses.retrieve('id');console.log(userAddress.data);
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const userAddress = await client.userAddresses.retrieve('id');console.log(userAddress.data);