To send a message to a single user, you need to create an HTTP Post Request to:
| Endpoint | https://api.zeepmobile.com/messaging/2008-07-14/send_message |
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]
To send a message to all current subscribers, you need to create an HTTP Post Request to:
| Endpoint | https://api.zeepmobile.com/messaging/2008-07-14/blast_message |
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]