Listar embalagens
Referência da API
- Introdução
- Autenticação
- Catálogo
- Checkout
- Configurações
- Conteúdo
- Clientes
- Leads
- Logística
- Marketing
- Pedidos
- Sistema
- Promoções
- Filas
- Usuários
- Webhooks
Listar embalagens
Lista todas as embalagens cadastradas
GET
/
{alias}
/
logistics
/
boxes
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/logistics/boxes \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"name": "<string>",
"outer_width": 123,
"outer_length": 123,
"outer_depth": 123,
"empty_weight": 123,
"inner_width": 123,
"inner_length": 123,
"inner_depth": 123,
"max_weight": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"pagination": {
"total": "10",
"count": "30",
"per_page": "10",
"current_page": "1",
"total_pages": "3",
"links": {
"previous": "",
"next": ""
}
}
}
}
Path Parameters
Alias da loja
Response
200
application/json
Lista de embalagens
Representa uma paginação com meta
Was this page helpful?
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/logistics/boxes \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"name": "<string>",
"outer_width": 123,
"outer_length": 123,
"outer_depth": 123,
"empty_weight": 123,
"inner_width": 123,
"inner_length": 123,
"inner_depth": 123,
"max_weight": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"pagination": {
"total": "10",
"count": "30",
"per_page": "10",
"current_page": "1",
"total_pages": "3",
"links": {
"previous": "",
"next": ""
}
}
}
}