WhatsApp · Schema

SendMessageResponse

SendMessageResponse from WhatsApp API

Properties

Name Type Description
messaging_product string
contacts array
messages array
View JSON Schema on GitHub

JSON Schema

whatsapp-cloud-api-send-message-response-schema.json Raw ↑
{
  "$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"
          }
        }
      }
    }
  }
}