Skip to main content
GET
/
whatsapp
/
get
/
message-status
Get Delivery Message Status
curl --request GET \
  --url https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status
import requests

url = "https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status")
.asString();
require 'uri'
require 'net/http'

url = URI("https://platform.chatsyncs.com/api/v1/whatsapp/get/message-status")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "status": "1",
  "message_status": "delivered",
  "message": "Success."
}
Checks the delivery status of a message you sent — pass the wa_message_id you got back from Send Text Message or a similar send endpoint.
Where to find whatsapp_bot_id: open Chatbot Manager → Keyword Replies — it’s shown in the same Unique ID column as bot_flow_unique_id. See Finding Your IDs & API Token for a screenshot.

Query Parameters

apiToken
string
required

Your ChatSyncs API key (not a WhatsApp/Meta access token). Where to find it.

Example:

"API-KEY"

wa_message_id
string
required

The WhatsApp message ID to check, returned by a send endpoint.

Example:

"WAMID.XXXXX"

whatsapp_bot_id
number
required

The WhatsApp bot ID the message was sent from. Where to find it.

Example:

123

Response

200 - application/json

Standard ChatSyncs response. status is "1" on success and "0" on failure.

status
string

"1" = success, "0" = failure.

message
string

Human-readable result message.