Question

How to check sms delivery status

  • 4 August 2019
  • 2 replies
  • 3442 views

I am new to ringcentral, so my question may sound silly.

I am exploring various apis offered with ringcentral for messaging. With the create sms api I am able to send sms. But what I was looking is to get a message delivery status that can confirm the delivery of sms.

We will later use this apis in our java web application and will return a delivery status to clients who uses our web portal to send sms


2 replies

There are few ways you can do that. There is a messageStatus in the API return:

Queued, Sent, Delivered, DeliveryFailed, SendingFailed, Received

https://developers.ringcentral.com/api-reference/SMS/createSMSMessage

"Sent" -- reached SMS provider/carrier, "Delivered" -- reached the recipient.

ref: https://forums.developers.ringcentral.com/questions/1207/message-status.html

Apart from this, you can use Call Log for reporting:

Just for reference, here is a similar question answered:

https://forums.developers.ringcentral.com/questions/8224/sms-delivery-report.html

Reply