> ## 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 Sticker

> Envia uma mensagem de sticker via WhatsApp.

## Parâmetros

### Body

<ParamField body="messaging_product" type="string" required default="whatsapp">
  Sempre `"whatsapp"`.
</ParamField>

<ParamField body="recipient_type" type="string" default="individual">
  Tipo de destinatário: `"individual"`.
</ParamField>

<ParamField body="to" type="string" required>
  Número do destinatário no formato `wa_id`.
</ParamField>

<ParamField body="type" type="string" required default="sticker">
  Sempre `"sticker"`.
</ParamField>

<ParamField body="context" type="object">
  Para responder uma mensagem específica.

  <Expandable title="Campos">
    <ParamField body="context.message_id" type="string" required>
      ID da mensagem a ser respondida.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="sticker" type="object" required>
  Deve conter `id` (media ID) **ou** `link` (URL pública). Formato: WebP estático ou animado.

  <Expandable title="Campos">
    <ParamField body="sticker.id" type="string">
      Media object ID do sticker.
    </ParamField>

    <ParamField body="sticker.link" type="string">
      URL pública do sticker (`.webp`).
    </ParamField>
  </Expandable>
</ParamField>

## Exemplo por ID

```json theme={null}
{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "5511999999999",
  "type": "sticker",
  "sticker": {
    "id": "1234567890"
  }
}
```

## Exemplo por URL

```json theme={null}
{
  "messaging_product": "whatsapp",
  "recipient_type": "individual",
  "to": "5511999999999",
  "type": "sticker",
  "sticker": {
    "link": "https://example.com/sticker.webp"
  }
}
```

## Resposta

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