Visit our Google Group
Discuss with other developers, get support and leave us feedback.

REST API

Table of Contents

send_message

To send a message to a single user, you need to create an HTTP Post Request to:

Endpointhttps://api.zeepmobile.com/messaging/2008-07-14/send_message

Example HTTP Post Request

POST /api/send_message HTTP/1.1
Host: api.zeepmobile.com
Authorization: Zeep [zeep-api-key]:[header-signature]
Date: [Current HTTP-date]
Content-Type: application/x-www-form-urlencoded
Content-Length: [number of characters in the next line]
user_id=[user_id]&body=[message body]

blast_message

To send a message to all current subscribers, you need to create an HTTP Post Request to:

Endpointhttps://api.zeepmobile.com/messaging/2008-07-14/blast_message

Example HTTP Post Request

POST /api/blast HTTP/1.1
Host: api.zeepmobile.com
Authorization: Zeep [zeep-api-key]:[header-signature]
Date: [Current HTTP-date]
Content-Type: application/x-www-form-urlencoded
Content-Length: [number of characters in the next line]
body=[message body]