Sends a mobile terminating SMS (MT-SMS) to a connected device. The device must have an active SIM with SMS capability enabled in its service profile.
Send an SMS with a numeric sender ID.
Set source_address to the sender’s phone number (for example, 12345689) and include your message in payload.
Display a custom sender name instead of a phone number.
Set source_address to your brand name (for example, CompanyName, up to 11 characters) and include source_address_type with id: 208.
Alphanumeric sender IDs are one-way only. Recipients can’t reply directly to these messages.
Receive SMS responses at your server.
Set dest_address with a callback identifier.
The platform forwards incoming messages to the API callback URL configured in your service profile.
Send messages longer than 160 characters by splitting them across multiple API calls.
Each call requires a udh (User Data Header) that identifies the message sequence.
The UDH format 050003XXYYZZ contains:
XX: Unique message reference (for example, CC)YY: Total number of parts (for example, 02 for 2 parts)ZZ: Current part number (for example, 01 for part 1)For more information, see the 3GPP TS 23.040 specification.
An auth_token should be provided to authenticate a session.
To obtain an auth_token, see the /api/v1/authenticate POST request.
The SMS message content.
Must be UTF-8 encoded.
Maximum 160 characters for a single SMS, or use udh for longer messages.
The sender identifier displayed on the recipient’s device. Can be an MSISDN (phone number), short code, or alphanumeric string. Alphanumeric strings are limited to 11 characters per GSM specifications.
Defines the format of source_address.
Required when using alphanumeric sender IDs.
The callback identifier for Person-to-Application (P2A) SMS. When set, incoming SMS responses are forwarded to the API callback URL configured in your service profile.
User Data Header for concatenated SMS.
Encoded as a hexadecimal string following 3GPP TS 23.040.
For example, 050003CC0201 indicates message 1 of 2 in sequence CC.
Data Coding Scheme per 3GPP TS 23.038.
Controls character encoding (for example, 0 for GSM 7-bit default alphabet, 8 for UCS2/UTF-16).