API supports the receipt and forwarding of MO messages via HTTP POST. Client provides the endpoint destination for the forwarded MO messages. MMS will post to the client endpoint as show below;
HTTP POST JSON sample inbound request:
Content Type: Application/JSON
HTTP POST request body will have:
{
"source_addr":"PhoneNumber",
"dest_addr":"ShortCode/LongCode",
"app_id":"xxxxxx",
"key":"ABC123XXXX",
"message":"This is a test message"
}
Your receiving endpoint deserializes the JSON object from the HTTP request.
If you need additional security, we do offer Basic Authentication support.
Post your comment on this topic.