Properties
| Name | Type | Description |
|---|---|---|
| messaging_product | string | |
| contacts | array | |
| messages | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-schema/whatsapp-cloud-api-send-message-response-schema.json",
"title": "SendMessageResponse",
"description": "SendMessageResponse from WhatsApp API",
"type": "object",
"properties": {
"messaging_product": {
"type": "string",
"example": "example_value"
},
"contacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"input": {
"type": "string"
},
"wa_id": {
"type": "string"
}
}
}
},
"messages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "WhatsApp message ID"
}
}
}
}
}
}