curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/catalog/looks \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"active": true,
"name": "Nome do Look",
"slug": "nome-do-look",
"description": "Descrição do look",
"total_products": 123,
"url": "<string>",
"products_ids": [
1,
2,
3,
4,
5
],
"total_price": 123,
"total_price_formated": "<string>",
"installments": {
"max_installment": 123,
"max_installment_value": 123,
"amount": 123,
"text": "<string>",
"text_with_tax": "<string>",
"text_discount_percent": "<string>",
"text_discount": "<string>"
},
"created_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
},
"updated_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
}
}
],
"meta": {
"meta": {
"pagination": {
"total": "10",
"count": "30",
"per_page": "10",
"current_page": "1",
"total_pages": "3",
"links": {
"previous": "",
"next": ""
}
}
}
}
}
Obtém uma lista de looks
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/catalog/looks \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"active": true,
"name": "Nome do Look",
"slug": "nome-do-look",
"description": "Descrição do look",
"total_products": 123,
"url": "<string>",
"products_ids": [
1,
2,
3,
4,
5
],
"total_price": 123,
"total_price_formated": "<string>",
"installments": {
"max_installment": 123,
"max_installment_value": 123,
"amount": 123,
"text": "<string>",
"text_with_tax": "<string>",
"text_discount_percent": "<string>",
"text_discount": "<string>"
},
"created_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
},
"updated_at": {
"date": "2000-08-17 10:24:24",
"timezone_type": 3,
"timezone": "America/Sao_Paulo"
}
}
],
"meta": {
"meta": {
"pagination": {
"total": "10",
"count": "30",
"per_page": "10",
"current_page": "1",
"total_pages": "3",
"links": {
"previous": "",
"next": ""
}
}
}
}
}
Alias da loja
Inclui dados adicionais (ex: products)
Lista de looks
The response is of type object
.
Was this page helpful?