Create alpha sender
A Messaging Service resource to add, fetch or remove an Alpha Sender ID from a Messaging Service.
Path parameters
-
The SID of the Service to create the resource under.
Body
-
The Alphanumeric Sender ID string. Can be up to 11 characters long. Valid characters are A-Z, a-z, 0-9, space, and hyphen
-
. This value cannot contain only numbers.
POST /v1/Services/{ServiceSid}/AlphaSenders
curl \
-X POST https://messaging.twilio.com/v1/Services/{ServiceSid}/AlphaSenders \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'AlphaSender=string'
Request example
{
"AlphaSender": "string"
}
Request examples
{
"AlphaSender": "string"
}
Response examples (201)
{
"account_sid": "string",
"alpha_sender": "string",
"capabilities": [
"string"
],
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}
Response examples (201)
{
"account_sid": "string",
"alpha_sender": "string",
"capabilities": [
"string"
],
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}