user2565735
user2565735

Reputation: 119

Twilio SMS Status check by API (Without webhook)

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

Answers (1)

DV82XL
DV82XL

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:

Upvotes: 2

Related Questions