HTTP Interface

Receive MMS Message

Our server can be configured to forward received MMS messages to you webserver via a HTTP POST.

To configure HTTP forwarding please login into your account and go to Preferences and then select the Forwarding tab.

POST Fields:

from The mobile number of the message sender.
text The MMS message's Subject field
msgid The message id, this is required to retrieve the MMS message contents
type The message type:
1 - SMS Text message
5 - MMS Message
filelist Comma separated list of component filenames

HTTP Response:

Our server expects a HTTP 200 (OK) status. Any content returned by your server will be ignored.

If anything other than a status 200 is returned then our server will consider this an error. On an error condition our server will retry to delivery the same message every 5 minute until the error is resolved.

ASP Example:

<%
From     = Request("from")
Text     = Request("text")
MsgId    = Request("msgid")
Type     = Request("type")
FileList = Request("filelist")

-- Place code here to use values
-- e.g. store message to a database

%>
<< Back to HTTP Interface