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

# Sticker

> Figurinha (sticker).

Disparado quando uma **figurinha** é enviada ou recebida.

<Info>
  Todo webhook também inclui os [campos comuns](/webhook-reference/introducao) — `tipo`, `nome`, `remetente`, `destinatario`, `idMessagem`, `data` e `horario`.
</Info>

## Campos deste evento

<ResponseField name="tipoMensagem" type="string">
  `stickerMessage`
</ResponseField>

<ResponseField name="formato" type="string">
  Sempre `image/webp`.
</ResponseField>

<ResponseField name="arquivo" type="string">
  Conteúdo da figurinha em **base64**.
</ResponseField>

## Exemplo de payload

```json theme={null}
{
  "tipo": "Chat",
  "nome": "Diogo Silva",
  "remetente": "5581999999999",
  "destinatario": "5511999999999",
  "idMessagem": "3F53E99E6E00E915EF8C",
  "data": "10/07/2026",
  "horario": "18:00:00",
  "tipoMensagem": "stickerMessage",
  "evento": "multimidia",
  "formato": "image/webp",
  "arquivo": "UklGR... (base64)",
  "filename": ""
}
```
