curl -X POST https://api.whatabot.app/api/v1/sessions/{sessionId}/message \ -H "X-Api-Key: wh_your_api_key" \ -H "Content-Type: application/json" \ -d '{"type": "text", "text": {"body": "Olá, como posso ajudar?"}}'
{ "messageId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "status": "queued" }
Envie uma mensagem para uma sessão ativa.
wh_
text
interactive
image
video
audio
document
type
Mostrar Campos
image/png
video/mp4
button_reply
list_reply
{ "type": "text", "text": { "body": "Olá, como posso ajudar?" } }
{ "type": "image", "media": { "mimeType": "image/png", "url": "https://exemplo.com/foto.png", "caption": "Foto do produto" } }
{ "type": "video", "media": { "mimeType": "video/mp4", "url": "https://exemplo.com/video.mp4", "caption": "Vídeo tutorial" } }
{ "type": "audio", "media": { "mimeType": "audio/ogg", "url": "https://exemplo.com/audio.ogg", "caption": "Mensagem de voz" } }
{ "type": "document", "media": { "mimeType": "application/pdf", "url": "https://exemplo.com/contrato.pdf", "caption": "Contrato" } }
{ "type": "interactive", "interactive": { "type": "button_reply", "button_reply": { "id": "btn_support", "title": "Suporte" } } }
{ "type": "interactive", "interactive": { "type": "list_reply", "list_reply": { "id": "row_pricing", "title": "Planos e Preços" } } }