Anexos do Pedido (PickingList Attachment) POST
Endpoint para cadastro de anexos em um determinado pedido.
Necessário Integrar
➖ Não obrigatório — use quando necessário anexar arquivos ao pedido.
URL
POST https://api.wemov.com.br/wms/v1/pickinglist/attachmentAtenção
A URL base deste endpoint é diferente: usa /wms/v1/ ao invés de /open/v1/.
Request Header
http
Authorization: Bearer {TOKEN}
Accept: application/json
User-Agent: NOME-DO-CLIENTERequest Body (form-data)
Este endpoint utiliza multipart/form-data ao invés de JSON.
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| file | File | ✅ | Arquivo que será anexado |
| PickingListID | Guid | ✅ | ID do pedido no formato UUID |
| UserFileName | String | ✅ | Nome descritivo do arquivo |
| IsPrintCheckout | Boolean | ❌ | Define se o anexo deve ser impresso automaticamente ao finalizar o checkout (Smart) |
Response
json
{
"code": 200,
"message": "The request has succeeded",
"data": {
"pickingListID": "UUID",
"fileName": "string.pdf",
"fileSize": 0,
"fileType": "string",
"registrationDate": "2025-07-29T14:56:56.035Z",
"isPrintCheckout": false
},
"error": ""
}Campos do Response
| Campo | Tipo | Descrição |
|---|---|---|
| pickingListID | Guid | ID do pedido relacionado |
| fileName | String | Nome do arquivo salvo |
| fileSize | Long | Tamanho do arquivo em bytes |
| fileType | String | Tipo/extensão do arquivo |
| registrationDate | DateTime | Data de registro do anexo |
| isPrintCheckout | Boolean | Se será impresso automaticamente no checkout |
