SMS/MMS API

A user texts in your keyword which is routed to the Connective Mobile API Cloud.

The Connective Mobile API Cloud Processes the message and delivers it to your servers.

Your servers then decide how to respond to the message.
REST API Interface
One Line of Code is all it takes
curl -X POST https://sms.connectivemobile.com/api/2.0/\
-d “To=+131712345678” \
-d “From=+13179876543” \
-d “Body=Test Text Message” \
-d “MediaUrl=http://s3images.digitalhomeinfo.com.s3.amazonaws.com/website/static/images/iphone-message.png” \
-d “Keyword=KEYWORD” \
-d “API_Key=12345678900987654312
-d “To=+131712345678” \
-d “From=+13179876543” \
-d “Body=Test Text Message” \
-d “MediaUrl=http://s3images.digitalhomeinfo.com.s3.amazonaws.com/website/static/images/iphone-message.png” \
-d “Keyword=KEYWORD” \
-d “API_Key=12345678900987654312
To:
The message destination phone number. Any valid mobile phone number will work.
The message destination phone number. Any valid mobile phone number will work.
From:
The Number (Shortcode) the message will be sent from.
The Number (Shortcode) the message will be sent from.
Body:
The message you want to send. SMS is limited to 160 characters.
The message you want to send. SMS is limited to 160 characters.
MediaUrl:
The URL of the media to be sent with the message. (jpg,png,gif are best)
The URL of the media to be sent with the message. (jpg,png,gif are best)
API_Key:
The API Key associated with your account.
The API Key associated with your account.
Keyword:
The Keyword this message will be sent from.
The Keyword this message will be sent from.