MO SMS Routing
In some cases we will receive MO SMS from the Operator's SMSC and then based on defined filters send those messages to you as HTTP notifications. This could be based on the content of the SMS but is usually based on the short code that the message was sent to.
You will need to provide a notification URL for us to route these notifications
POST / HTTP/1.1
Host: <MERCHANT_NOTIFICATION_URL>
Content-Type: application/json
{
"sender": "965123456789",
"receiver": "94401",
"body": "The message contents"
}
Name | Description |
---|---|
sender | The MSISDN that sent the MO SMS |
receiver | The short code that the message was sent to |
body | The contents of the message |
Updated about 1 year ago