Listar imagens de um SKU
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 imagens de um SKU
Retorna a lista de imagens associadas a um SKU específico
GET
/
{alias}
/
catalog
/
skus
/
{skuId}
/
images
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/catalog/skus/{skuId}/images \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"processed": true,
"name": "<string>",
"extension": "<string>",
"order": 123,
"filter_image_url": "<string>",
"small": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"thumb": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"medium": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"large": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
}
}
]
}
Response
200
application/json
Lista de imagens do SKU encontrada
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.dooki.com.br/v2/{alias}/catalog/skus/{skuId}/images \
--header 'User-Secret-Key: <api-key>' \
--header 'User-Token: <api-key>'
{
"data": [
{
"id": 123,
"processed": true,
"name": "<string>",
"extension": "<string>",
"order": 123,
"filter_image_url": "<string>",
"small": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"thumb": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"medium": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
},
"large": {
"width": 500,
"height": 500,
"url": "https://example.com/image-medium.jpeg"
}
}
]
}