> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vectalk.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Enviar Produto / Catálogo

> Envia mensagens interativas de produto único, multi-produto ou catálogo via WhatsApp.

## Produto Único

```json theme={null}
{
  "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

```json theme={null}
{
  "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" }
          ]
        }
      ]
    }
  }
}
```

## Mensagem de Catálogo

```json theme={null}
{
  "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

```json theme={null}
{
  "messaging_product": "whatsapp",
  "contacts": [{ "input": "5511999999999", "wa_id": "5511999999999" }],
  "messages": [{ "id": "wamid.HBgLNTUxMTk5OTk5OTk5..." }]
}
```
