Messaging
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
Path parameters
idstring uuid required
The identifier of the messaging profile.
Query parameters
page[number]integer
Page number to retrieve (1-based).
page[size]integer
Number of items to return per page.
Response
Successful response with a list of alphanumeric sender IDs.
Example response
{
"data": [
{
"alphanumeric_sender_id": "MyCompany",
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"record_type": "alphanumeric_sender_id",
"us_long_code_fallback": "+15551234567"
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}