GET
/
{alias}
/
orders
/
{id}
/
boxes
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"
    }
  ]
}

Authorizations

User-Token
string
header
required
User-Secret-Key
string
header
required

Path Parameters

alias
string
required

Alias da loja

id
integer
required

ID do pedido

Response

200
application/json

Lista de embalagens do pedido

The response is of type object.