Receive inbound messages
Example:
POST https://www.yourserver.com/inbound-sms
When you rent a number, you have to set the callback Url ("inboundSmsCallbackUrl") in order to receive the inbound messages.
Your callback service will receive a POST HTTP request with the following request body:
{
"messageId": string,
"from": string,
"to": string,
"message": string,
"parts": integer,
"originatingService": "Sms",
"direction": "Inbound",
"receivedDate": string
}
Parameters:
KEY | DESCRIPTION |
---|---|
messageId | The id of the inbound message. |
from | The sender of the inbound message. |
to | The recipient of the inbound message (your number). |
message | The body of the inbound message. |
parts | The message's total parts. |
originatingService | The originating service of the message (SMS). |
direction | The direction of the message (Inbound). |
receivedDate | The date that the inbound message was received (ISO format). |
See details about the Inbound SMS here: Inbound Messages (MO)