Eventos & Webhooks
A WAME API envia notificações em tempo real para a sua URL sempre que algo acontece na instância — mensagens recebidas, status de entrega, conexão, chamadas e mais. Os exemplos abaixo são carregados diretamente da API.
Introdução
Configure as URLs de webhook da instância pela REST API. Cada tipo de evento pode ter a sua própria URL — deixe em branco para usar a URL padrão (webhookMessage). A entrega é feita via POST com corpo JSON.
Formato webhookFormat: "meta"
O foco deste modelo é seguir o mesmo padrão do webhook oficial do WhatsApp — o WhatsApp Cloud API da Meta. Ao definir "webhookFormat": "meta" os payloads chegam no mesmo envelope da Cloud API, então você reaproveita o mesmo parser da integração oficial. Ver referência da Meta
curl -X PUT "https://us.api-wa.me/YOUR_KEY/instance" \
-H "Content-Type: application/json" \
-d '{
"allowWebhook": true,
"allowNumber": "all",
"webhookFormat": "meta",
"webhookMessage": "https://seu-servidor.com/webhook",
"webhookGroup": "",
"webhookConnection": "",
"webhookQrCode": "",
"webhookMessageFromMe": "",
"webhookHistory": ""
}'Responda com 200 OK o mais rápido possível. Falhas e reenvios podem ser acompanhados em GET /{key}/instance/webhook/statistics.
Estrutura do payload
Com webhookFormat: "meta" os webhooks seguem o mesmo formato do WhatsApp Cloud API da Meta . O envelope é sempre o mesmo; o que muda é o campo changes[].field e o conteúdo de value.
object— sempre"wame".entry[].id— identificador da instância.entry[].changes[].field— tipo do evento: messages, presence, connection, qrcode, call, groups, health.entry[].changes[].value— dados do evento.
Mensagens
field: messagesMensagens recebidas e status de entrega.
Mensagem de texto
message-textTexto simples enviado por um contato.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_TEXT",
"timestamp": "1700000000",
"type": "text",
"text": {
"body": "Olá!"
}
}
]
}
}
]
}
]
}Mensagem de imagem
message-imageImagem com legenda opcional.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_IMG",
"timestamp": "1700000000",
"type": "image",
"image": {
"id": "WAMID_IMG",
"url": "https://us.api-wa.me/your-instance-id/message/WAMID_IMG/media",
"mime_type": "image/jpeg",
"sha256": "YWJj",
"caption": "foto"
}
}
]
}
}
]
}
]
}Mensagem de áudio
message-audioÁudio ou mensagem de voz (PTT).
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_AUD",
"timestamp": "1700000000",
"type": "audio",
"audio": {
"id": "WAMID_AUD",
"url": "https://us.api-wa.me/your-instance-id/message/WAMID_AUD/media",
"mime_type": "audio/ogg",
"sha256": "YWJj",
"voice": true
}
}
]
}
}
]
}
]
}Mensagem de vídeo
message-videoVídeo com legenda opcional.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_VID",
"timestamp": "1700000000",
"type": "video",
"video": {
"id": "WAMID_VID",
"url": "https://us.api-wa.me/your-instance-id/message/WAMID_VID/media",
"mime_type": "video/mp4",
"sha256": "YWJj",
"caption": "v"
}
}
]
}
}
]
}
]
}Mensagem de documento
message-documentArquivo/documento (PDF, planilha, etc.).
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_DOC",
"timestamp": "1700000000",
"type": "document",
"document": {
"id": "WAMID_DOC",
"url": "https://us.api-wa.me/your-instance-id/message/WAMID_DOC/media",
"mime_type": "application/pdf",
"sha256": "YWJj",
"filename": "orcamento.pdf",
"caption": "PDF"
}
}
]
}
}
]
}
]
}Figurinha (sticker)
message-stickerSticker estático ou animado.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_STK",
"timestamp": "1700000000",
"type": "sticker",
"sticker": {
"id": "WAMID_STK",
"url": "https://us.api-wa.me/your-instance-id/message/WAMID_STK/media",
"mime_type": "image/webp",
"sha256": "YWJj",
"animated": false
}
}
]
}
}
]
}
]
}Localização
message-locationCoordenadas de latitude e longitude.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_LOC",
"timestamp": "1700000000",
"type": "location",
"location": {
"latitude": -25.4,
"longitude": -49.2,
"name": "Curitiba",
"address": "PR"
}
}
]
}
}
]
}
]
}Contatos
message-contactsUm ou mais contatos compartilhados (vCard).
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_CON",
"timestamp": "1700000000",
"type": "contacts",
"contacts": [
{
"name": {
"formatted_name": "Beltrano"
},
"vcard": "BEGIN:VCARD..."
}
]
}
]
}
}
]
}
]
}Reação
message-reactionEmoji de reação a uma mensagem existente.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_RCT",
"timestamp": "1700000000",
"type": "reaction",
"reaction": {
"message_id": "ORIG1",
"emoji": "👍"
}
}
]
}
}
]
}
]
}Message Reaction Removed
message-reaction-removed{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_RCT2",
"timestamp": "1700000000",
"type": "reaction",
"reaction": {
"message_id": "ORIG1"
}
}
]
}
}
]
}
]
}Resposta de lista
message-interactive-listItem selecionado em uma lista interativa.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_LST",
"timestamp": "1700000000",
"type": "interactive",
"interactive": {
"type": "list_reply",
"list_reply": {
"id": "row_1",
"title": "Opção A",
"description": "desc"
}
}
}
]
}
}
]
}
]
}Mensagem não suportada
message-unsupportedTipo de mensagem ainda não tratado.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_UNS",
"timestamp": "1700000000",
"type": "unsupported",
"errors": [
{
"code": 131051,
"title": "Unsupported message type",
"message": "Message type pollCreationMessageV3 is not supported",
"error_data": {
"details": "pollCreationMessageV3"
}
}
]
}
]
}
}
]
}
]
}Resposta (reply)
message-reply-contextMensagem citando outra mensagem (contexto).
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_RPL",
"timestamp": "1700000000",
"type": "text",
"text": {
"body": "respondendo"
},
"context": {
"from": "5511777776666",
"id": "QUOTED1"
}
}
]
}
}
]
}
]
}Referral (anúncio)
message-referralMensagem originada de um anúncio Click-to-WhatsApp.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511999998888"
}
],
"messages": [
{
"from": "5511999998888",
"id": "WAMID_ADS",
"timestamp": "1700000000",
"type": "text",
"text": {
"body": "vim do anúncio"
},
"referral": {
"source_url": "https://fb.me/x",
"source_id": "AD123",
"source_type": "ad",
"headline": "Promo",
"body": "Fale conosco",
"media_type": "image",
"thumbnail_url": "https://cdn/t.jpg",
"ctwa_clid": "CLID9"
}
}
]
}
}
]
}
]
}Mensagem de grupo
message-groupMensagem enviada dentro de um grupo.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Fulano"
},
"wa_id": "5511777776666"
}
],
"messages": [
{
"from": "5511777776666",
"group_id": "16479379001-1580667835@g.us",
"id": "WAMID_GRP",
"timestamp": "1700000000",
"type": "text",
"text": {
"body": "oi grupo"
}
}
]
}
}
]
}
]
}Mensagem enviada por você
message-from-meEco de uma mensagem enviada pela própria instância.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"contacts": [
{
"profile": {
"name": "Eu"
},
"wa_id": "5566996852025"
}
],
"messages": [
{
"from": "5566996852025",
"id": "WAMID_OUT",
"timestamp": "1700000000",
"type": "text",
"text": {
"body": "msg minha"
},
"from_me": true
}
]
}
}
]
}
]
}Message Edit
message-edit{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"messages": [
{
"from": "5511999998888",
"id": "WAMID_ORIG",
"timestamp": "1700000000",
"type": "edit",
"edit": {
"original_message_id": "WAMID_ORIG",
"message": {
"type": "text",
"text": {
"body": "mensagem corrigida"
}
}
}
}
]
}
}
]
}
]
}Status: enviada
status-sentMensagem foi enviada ao servidor.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_TEXT",
"status": "sent",
"timestamp": "1700000000",
"recipient_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Status: entregue
status-deliveredMensagem entregue no dispositivo do destinatário.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_TEXT",
"status": "delivered",
"timestamp": "1700000000",
"recipient_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Status: lida
status-readMensagem lida pelo destinatário.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_TEXT",
"status": "read",
"timestamp": "1700000000",
"recipient_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Status Played
status-played{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_AUD",
"status": "played",
"timestamp": "1700000000",
"recipient_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Status Group
status-group{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_GRP",
"status": "delivered",
"timestamp": "1700000000",
"recipient_id": "16479379001-1580667835@g.us",
"recipient_type": "group",
"recipient_participant_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Status: falha
status-failedFalha ao entregar a mensagem.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_TEXT",
"status": "failed",
"timestamp": "1700000000",
"recipient_id": "5511999998888",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
},
"errors": [
{
"code": 463,
"title": "Conta restringida",
"message": "Conta restringida",
"error_data": {
"details": "463"
}
}
]
}
]
}
}
]
}
]
}Recibo (receipt)
receiptConfirmação de recebimento/leitura.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "messages",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"statuses": [
{
"id": "WAMID_TEXT",
"status": "read",
"timestamp": "1700000005",
"recipient_id": "5511777776666",
"conversation": {
"id": null,
"expiration_timestamp": null,
"origin": {
"type": null
}
},
"pricing": {
"billable": null,
"pricing_model": null,
"type": null,
"category": null
}
}
]
}
}
]
}
]
}Presença
field: presenceDigitando, gravando, online/offline.
Presença
presenceEstado de presença de um contato.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "presence",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"presence": {
"wa_id": "160301265768606",
"status": "available"
}
}
}
]
}
]
}Conexão
field: connectionAbertura e encerramento da conexão da instância.
Conexão aberta
connection-openA instância conectou-se ao WhatsApp.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "connection",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"connection": {
"status": "open",
"code": 200
}
}
}
]
}
]
}Conexão encerrada
connection-closeA instância desconectou-se.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "connection",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"connection": {
"status": "close",
"code": 1004,
"reason": "disconnected"
}
}
}
]
}
]
}QR Code
field: qrcodeNovo QR Code gerado para pareamento.
QR Code
qrcodeNovo QR Code disponível para leitura.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "qrcode",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"qrcode": {
"code": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA..."
}
}
}
]
}
]
}Chamadas
field: callChamadas recebidas de voz e vídeo.
Chamada
callChamada recebida de voz ou vídeo.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "call",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"calls": [
{
"id": "CALL1",
"from": "5511999998888",
"status": "offer",
"is_video": false,
"is_group": false,
"timestamp": "1700000000"
}
]
}
}
]
}
]
}Grupos
field: groupsAlterações em participantes e metadados de grupos.
Participantes do grupo
group-participantsEntrada, saída, promoção ou remoção de membros.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "groups",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"groups": {
"event": "participants_updated",
"id": "16479379001-1580667835@g.us",
"action": "add",
"participants": [
"5511999998888@s.whatsapp.net"
]
}
}
}
]
}
]
}Atualização de grupo
group-updateAlteração de nome, descrição ou configurações.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "groups",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"groups": {
"event": "update",
"data": [
{
"id": "16479379001-1580667835@g.us",
"subject": "Novo nome"
}
]
}
}
}
]
}
]
}Health
field: healthSinal de saúde da instância.
Health check
healthBatimento de saúde emitido pela instância.
{
"object": "wame",
"entry": [
{
"id": "wame.eW91ci1pbnN0YW5jZS1pZA",
"changes": [
{
"field": "health",
"value": {
"messaging_product": "whatsapp",
"metadata": {
"display_phone_number": "5566996852025",
"phone_number_id": "your-instance-id"
},
"health": {
"status": "restricted",
"previous": "healthy",
"reason": "many 463",
"should_pause": true,
"should_rotate": false
}
}
}
]
}
]
}Contexto para AI
Arquivos .md prontos para colar em assistentes de AI (Claude, ChatGPT, Copilot, Cursor). Eles descrevem os webhooks e a API em formato otimizado para que a AI te ajude a integrar.
Webhooks (llms/webhook)
Referência completa dos eventos de webhook e formatos (native, meta, both).
API completa (llms)
Contexto de toda a REST API: endpoints, parâmetros e exemplos.
WAME API — Eventos & Webhooks
Começar Agora