Reputation: 119
Is there any API to retrieve the status of the SMS message based on SID (SMS ID) without using web hook? So, we can call API whenever we need to find the status of the SID. Thanks in advance!
Upvotes: 2
Views: 795
Reputation: 6629
According to Twilio's SMS API Docs, you post and fetch SMS messages using the Message
resource.
Here's the API format:
https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Messages/{Sid}.json
References:
status
.Upvotes: 2