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

# Remover Marcadores

> Serviço para remover marcadores (tags) de um pedido.

## Endpoint

```
POST https://api.tiny.com.br/api2/pedido.marcadores.remover.php
```

## Parâmetros

| Parâmetro  | Tipo   | Ocorrência  | Descrição                                 |
| ---------- | ------ | ----------- | ----------------------------------------- |
| token      | string | obrigatório | Chave gerada para identificar sua empresa |
| formato    | string | obrigatório | Formato do retorno (json)                 |
| id         | int    | obrigatório | ID do pedido                              |
| marcadores | string | obrigatório | IDs dos marcadores separados por vírgula  |

## Exemplo de chamada

```bash theme={null}
curl -X POST https://api.tiny.com.br/api2/pedido.marcadores.remover.php \
  -d "token=SEU_TOKEN&formato=json&id=789456&marcadores=1,5"
```

## Retorno

```json theme={null}
{
  "retorno": {
    "status_processamento": 3,
    "status": "OK"
  }
}
```
