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

# Incluir Forma de Envio

> Serviço destinado a cadastrar novas formas de envio.

## Endpoint

```
POST https://api.tiny.com.br/api2/forma.envio.incluir.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)                 |
| forma\_envio | xml    | obrigatório | Dados da forma de envio em formato XML    |

## Descrição

Permite cadastrar formas de envio personalizadas como "Retirada no Local", "Entrega Própria", etc.

## Exemplo de chamada

```bash theme={null}
curl -X POST https://api.tiny.com.br/api2/forma.envio.incluir.php \
  -d "token=SEU_TOKEN&formato=json" \
  -d "forma_envio=<?xml version=\"1.0\" encoding=\"UTF-8\"?><forma_envio>...</forma_envio>"
```
