Syniverse Cloud messaging service has introduced a new Messaging API endpoint that allows better throughput performance for Customers that are sending SMS or MMS messages to Single recipients at a time.
Direct Message end point : https://api.syniverse.com/scg-external-api/api/v1/messaging/messages
The Direct Message API has some of the same attributes as the existing /message_request API endpoint. The Direct Message API end point can be used to
- Schedule Message to a single recipient
- Send one to one messages on any channel ( SMS, MMS, FB messenger, WeChat, etc)
- Suitable for 2- way messaging conversations
Sample Request using Direct Message API:
curl -X POST \
https://api.syniverse.com/scg-external-api/api/v1/messaging/messages \
-H 'Authorization: Bearer <Auth Token>' \
-H 'Content-Type: application/json' \
-H 'cache-control: no-cache' \
-d '{"from":"address:18322222222","to":"+14085551212","body":"This is a Direct Message API test to Kola"}'
0 Comments