import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const alphanumericSenderID of client.messagingProfiles.listAlphanumericSenderIDs( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',)) { console.log(alphanumericSenderID.id);}
List alphanumeric sender IDs for a messaging profile
List all alphanumeric sender IDs associated with a specific messaging profile.
GET
/
messaging
/
profiles
/
{id}
/
alphanumeric
/
sender
/
ids
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});// Automatically fetches more pages as needed.for await (const alphanumericSenderID of client.messagingProfiles.listAlphanumericSenderIDs( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',)) { console.log(alphanumericSenderID.id);}