Adicionar nota fiscal a uma entrega¶
Este endpoint permite que o vendedor (seller
) adicione uma nota fiscal a uma entrega utilizando o id
como referência.
Escopo requerido
Valor | Descrição |
---|---|
open:order-delivery-seller: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 |
Chamada:
curl -X 'POST' \
'https://api.magalu.com/seller/v1/deliveries/{id}/invoices' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <Access Token>' \
-H 'Content-Type: application/json' \
-d '{
"issued_at": "2024-08-01T14:13:50.015255",
"key": "55230968422419000175550040000490061048949744",
"issuer": "00000000000",
"amount": 100.37,
"channel": {
"id": "00839163-486f-4557-8173-c454d22edd64"
},
"xml": "<xml>...</xml>"
}'
{
"issued_at": "2024-08-01T14:13:50.015255",
"key": "55230968422419000175550040000490061048949744",
"status": "awaiting_validation",
}
Código | Descrição |
---|---|
201 | CREATED |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |