get https://{accountName}.{environment}.com.br/api/catalog/pvt/collection//products
Retrieves information about the products from a collection
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
page | integer | Page number of the Collection |
Size | integer | Page size of the Collection |
TotalRows | integer | Total rows of the Collection page |
TotalPage | integer | Total pages of the Collection |
Data | array of objects | Information about the products in the Collection |
ProductId | integer | Product's ID |
SkuId | integer | SKUs' ID |
SubCollectionId | integer | SubCollection's ID |
Position | integer | Position of the Product inside the Collection |
ProductName | string | Product name |
SkuImageUrl | string | Image URL of the SKU |
Response body example:
{
"Page": 1,
"Size": 1,
"TotalRows": 1,
"TotalPage": 1,
"Data": [
{
"ProductId": 1,
"SkuId": 1,
"SubCollectionId": 10587,
"Position": 1,
"ProductName": "Creme de cabelo Softh 37:2000002 -- 1577991055.",
"SkuImageUrl": "https://cosmetics1.vteximg.com.br/arquivos/ids/155491"
}
]
}