End-to-end recipe to send a text message using Wazapin Public API.
Prepare credentials
Pick target channel and destination
channel_id
Send message request
curl -X POST "https://api.wazapin.id/v1/messages" \ -H "X-Api-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "channel_id": "wzp_wu8f3k2p", "to": "6281234567890", "type": "text", "text": "Hello from recipe" }'
Check message status
id
curl -X GET "https://api.wazapin.id/v1/messages/{messageID}" \ -H "X-Api-Key: YOUR_API_KEY"