About
This API method allows you to programatically send or schedule an SMS message. SMS may be sent to any destination and can be sent using an E164, alphanumeric or "leased" sender ID.
Your account and property must be enabled for SMS. Please contact client services to have SMS enabled.
Alphanumeric Sender IDs
Alphanumeric sender IDs are supported in many regions, notably excluding US and Canada. If a recipient operator does not support alphanumeric sender IDs, a leased sender ID will be applied. The following rules apply for alphanumeric sender IDs:
- Length between 1 and 11 characters
- Valid characters include A-Z, a-z, 0-9 and spaces
- Must include at least one letter
Leased Sender IDs
Leased sender IDs are automatically assigned sender IDs that are unique to the recipient and that are valid for 30 days. Leased sender IDs allow you to specify response options on a per message basis, such as forwarding responses to a mobile or email or forwarding responses and delivery receipts to a webhook URI.
Note that you may only have 5 leases to a specific recipient at any one time.
Resource URI
SMS messages are sent using the following call.
POST
/v2/Properties/[PropertySid]/Messages
Request
URI Parameters
Parameter | Type | Description |
---|---|---|
PropertySid | string | The secure identifier of the property from which to send the SMS. |
Resource Parameters
Parameter | Type | Description |
---|---|---|
From | string | The sender ID. This can be a mobile phone number in E164 format (including + prefix), an alphanumeric string, or blank or omitted to send from a leased number. |
To | string | The recipient of the SMS message in E164 format (including + prefix). |
Text | string | The content of the SMS message. |
Optional Parameters
Parameter | Type | Description |
---|---|---|
Schedule | integer | The UTC time in seconds since Unix Epoch to send the message. This can be at most 14 days in the future. If the value is in the past, the request will fail, unless the value is less than 1 hour in the past, in which case the request will succeed and the message will be sent immediately. |
DeliveryReceipt | boolean | Whether to request a delivery receipt. Valid options are:
|
DeliveryReceiptWebhookUri | string | The callback URI to invoke when a delivery receipt is received. Note that DeliveryReceipt must be set to true for this to be triggered. |
DeliveryReceiptWebhookMethod | string | The method to use for delivery receipt callbacks. Valid options are POST and GET. Default is POST. |
ExternalId | string | User-defined arbitrary id which is attached to the message and can be retrieved later. |
Lease-Specific Optional Parameters
The following optional parameters may be used when sending from a leased number (when From
is blank or unspecified). When a response to the sent message is received, the following parameters define how the response is treated.
Parameter | Type | Description |
---|---|---|
ForwardToSms | string | When a response is received, forward it to this number in E164 format. |
ForwardFromSms | string | When forwarding via SMS, send from this E164 formatted number or alphanumeric sender ID. By default the sender ID will be the sender ID of the responding party. |
ForwardToEmail | string | When a response is received, forward it over email to this email address. |
ForwardFromEmail | string | When forwarding via email, send from this email address. By default this is a "no reply" email address. |
WebhookUri | string | The callback URI to invoke when a response is received. |
WebhookMethod | string | The method to use for response callbacks. Valid options are POST and GET. Default is POST. |
- JSON
{
"From": "+61499009990",
"To": "+61488023555",
"Text": "You win again, gravity!"
}
- JSON
{
"From": "",
"To": "+61488023555",
"Text": "You call that an antenna?",
"Schedule": 1321009871,
"DeliveryReceipt": true,
"DeliveryReceiptWebhookUri": "https://callback.2.me/for/delivery_receipt",
"DeliveryReceiptWebhookMethod": "POST",
"ForwardToSms": "+61499333222",
"ForwardFromSms": "",
"ForwardToEmail": "forwarded@2.me",
"ForwardFromEmail": "noreply@fonedynamics.com",
"WebhookUri": "https://callback.2.me/for/sms_responses",
"WebhookMethod": "POST",
"ExternalId": "testid123"
}
Response
200 – OK
On successful acknowledgement of the SMS message, a 200 OK is returned with a JSON formatted Message resource instance.
Message Resource Parameters
Parameter | Type | Description |
---|---|---|
MessageSid | string | The message secure identifier which uniquely identifies this message. |
AccountSid | string | The account secure identifier associated with the message. |
PropertySid | string | The property secure identifier associated with the message. |
From | string | The alphanumeric or E164 formatted sender ID of the message. If the message was sent using a leased sender ID, this field will be populated with the actual E164 sender ID that was allocated to the SMS message. |
To | string | The E164 formatted recipient of the SMS message. |
Text | string | The content of the SMS message. |
- JSON
{
Message:
{
"MessageSid": "M87DMNHSDJHSD48DMNSDS6VJCNKD9MD0",
"AccountSid": "AG5T3HFR5ASD54FS5GB3SDAFJAKSH6DS",
"PropertySid": "S7DNJ9KJDS0MDS23DKS9QMZ8DKJSD9KL",
"From": "+6199111222",
"To": "+61488023555",
"Text": "You call that an antenna?"
}
}
400 – Error
For error codes and messages, please refer here.