Ir para o conteúdo

Atualizar uma nota fiscal inválida

Este endpoint permite que o vendedor (seller) atualize uma nota fiscal inválida utilizando o id e a key como referência.

Escopo requerido

Valor Descrição
open:order-delivery:write Permite a escrita de entregas e dados relacionados.

Parâmetros da URL

Campo Tipo Descrição Obrigatório
id string ID da entrega na plataforma. Sim
key string Chave da nota fiscal a ser atualizada. Sim

Chamada:

curl -X 'POST' \
  'https://services.magalu.com/seller/v1/deliveries/{id}/invoices/{key}' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer <Access Token>' \
  -H 'Content-Type: application/json' \
  -d '{
    "issued_at": "2024-07-22T13:18:22.000Z",
    "volume_quantity": 1,
    "xml": "<xml>...</xml>"
}'

Códigos de retorno

Código Descrição
204 NO CONTENT
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error