get https://{accountName}.{environment}.com.br/api/catalog/pvt/subcollection//stockkeepingunit
Retrieves all SKUs from a Subcollection
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
| integer | Page number |
| integer | Number of items in a page |
| integer | Total rows of the page |
| integer | Total page number |
| array of objects | Informations about the Subcollection |
| integer | SubCollection ID |
| integer | SKU ID |
Response body example:
{
"Page": 1,
"Size": 2,
"TotalRows": 2,
"TotalPage": 1,
"Data": [
{
"SubCollectionId": 12,
"SkuId": 2
},
{
"SubCollectionId": 12,
"SkuId": 7
}
]
}