Skip to main content
POST
/
messages
Enviar Produto / Catálogo
curl --request POST \
  --url https://apis.vectalk.com.br/api/messages \
  --header 'Authorization: Bearer <token>'

Produto Único

{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "5511999999999",
  "type": "interactive",
  "interactive": {
    "type": "product",
    "body": {
      "text": "Confira este produto!"
    },
    "footer": {
      "text": "Promoção por tempo limitado"
    },
    "action": {
      "catalog_id": "367025965434465",
      "product_retailer_id": "SKU_001"
    }
  }
}

Multi-Produto

{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "5511999999999",
  "type": "interactive",
  "interactive": {
    "type": "product_list",
    "header": {
      "type": "text",
      "text": "Nossos Produtos"
    },
    "body": {
      "text": "Confira nosso catálogo"
    },
    "footer": {
      "text": "Preços sujeitos a alteração"
    },
    "action": {
      "catalog_id": "146265584024623",
      "sections": [
        {
          "title": "Eletrônicos",
          "product_items": [
            { "product_retailer_id": "SKU_001" },
            { "product_retailer_id": "SKU_002" }
          ]
        },
        {
          "title": "Acessórios",
          "product_items": [
            { "product_retailer_id": "SKU_003" }
          ]
        }
      ]
    }
  }
}
{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "5511999999999",
  "type": "interactive",
  "interactive": {
    "type": "catalog_message",
    "body": {
      "text": "Confira nosso catálogo completo e adicione itens ao carrinho."
    },
    "action": {
      "name": "catalog_message",
      "parameters": {
        "thumbnail_product_retailer_id": "SKU_001"
      }
    }
  }
}

Resposta

{
  "messaging_product": "whatsapp",
  "contacts": [{ "input": "5511999999999", "wa_id": "5511999999999" }],
  "messages": [{ "id": "wamid.HBgLNTUxMTk5OTk5OTk5..." }]
}