curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/orders/{id}/boxes \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'{
"data": [
{
"total_boxes": 123,
"boxes": [
{
"description": "<string>",
"weight": "<string>",
"width": "<string>",
"height": "<string>",
"length": "<string>",
"items_weight": "<string>",
"items": [
{
"description": "<string>",
"width": 123,
"length": 123,
"depth": 123,
"weight": 123,
"keepFlat": true,
"volume": 123
}
],
"total": "10"
}
],
"total": "10"
}
]
}Retorna uma lista de embalagens associadas a um pedido específico
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/orders/{id}/boxes \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'{
"data": [
{
"total_boxes": 123,
"boxes": [
{
"description": "<string>",
"weight": "<string>",
"width": "<string>",
"height": "<string>",
"length": "<string>",
"items_weight": "<string>",
"items": [
{
"description": "<string>",
"width": 123,
"length": 123,
"depth": 123,
"weight": 123,
"keepFlat": true,
"volume": 123
}
],
"total": "10"
}
],
"total": "10"
}
]
}Lista de embalagens do pedido
Show child attributes
Show child attributes
Lista de itens com dimensões e características para envio
Show child attributes
Descrição do item
Largura do item (cm)
Comprimento do item (cm)
Altura ou profundidade do item (cm)
Peso do item (kg)
Indica se o item deve ser mantido plano
Volume calculado do item
"10"
"10"
Was this page helpful?