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

# Tags de negócio

> Adicione e remova tags de um negócio.

## Adicionar tag

```
POST /v1/deals/:id/tags
```

**Escopo necessário:** `write:tags`

```bash theme={null}
curl -X POST https://api.socialsell.ai/v1/deals/664c1d2e3f4a5b6789012347/tags \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"tag": "prioridade-alta"}'
```

## Remover tag

```
DELETE /v1/deals/:id/tags/:tag
```

**Escopo necessário:** `write:tags`

```bash theme={null}
curl -X DELETE "https://api.socialsell.ai/v1/deals/664c1d2e3f4a5b6789012347/tags/q2" \
  -H "Authorization: Bearer sk_live_..."
```

Ambos os endpoints retornam o objeto negócio atualizado.
