Get the delivery status of a sent message
curl --request GET \
--url https://api.vambe.me/api/public/whatsapp/message/status/{messageId} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/whatsapp/message/status/{messageId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/whatsapp/message/status/{messageId}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)WhatsApp Messages
Get WhatsApp Message Delivery Status
Check what happened to a message sent through the API. Look it up by the messageId returned in the send response: answers the current delivery status (accepted, sent, delivered, read or failed) with the timestamp of each transition and the failure reason when WhatsApp rejected the message. Messages become queryable a few seconds after the send is accepted. Requires x-api-key header.
GET
/
api
/
public
/
whatsapp
/
message
/
status
/
{messageId}
Get the delivery status of a sent message
curl --request GET \
--url https://api.vambe.me/api/public/whatsapp/message/status/{messageId} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/whatsapp/message/status/{messageId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/whatsapp/message/status/{messageId}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?
