curl -X GET "https://api.wazapin.id/v1/messages/9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8" \
-H "X-Api-Key: YOUR_API_KEY" \
-H "Accept: application/json"
{
"id": "9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8",
"channel_id": "wzp_wu8f3k2p",
"to_phone": "6281234567890",
"type": "text",
"status": "sent",
"provider_message_id": "wamid.HBgL...",
"created_at": "2026-03-04T06:20:10Z",
"updated_at": "2026-03-04T06:20:20Z",
"request_id": "req_123"
}
Example request and response for GET /v1/messages/.
curl -X GET "https://api.wazapin.id/v1/messages/9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8" \
-H "X-Api-Key: YOUR_API_KEY" \
-H "Accept: application/json"
{
"id": "9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8",
"channel_id": "wzp_wu8f3k2p",
"to_phone": "6281234567890",
"type": "text",
"status": "sent",
"provider_message_id": "wamid.HBgL...",
"created_at": "2026-03-04T06:20:10Z",
"updated_at": "2026-03-04T06:20:20Z",
"request_id": "req_123"
}
GET /v1/messages/{messageID}
Get one message record by ID.
curl -X GET "https://api.wazapin.id/v1/messages/9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8" \
-H "X-Api-Key: YOUR_API_KEY" \
-H "Accept: application/json"
{
"id": "9f1fd66d-c37a-4b50-a8c2-b4dca523f9c8",
"channel_id": "wzp_wu8f3k2p",
"to_phone": "6281234567890",
"type": "text",
"status": "sent",
"provider_message_id": "wamid.HBgL...",
"created_at": "2026-03-04T06:20:10Z",
"updated_at": "2026-03-04T06:20:20Z",
"request_id": "req_123"
}