get https://{accountName}.{environment}.com.br/api/catalog/pvt/stockkeepingunitkit
Retrieves general information about the components of an SKU Kit by SKU ID or Parent SKU ID.
Attention
You can choose only one query param per time. If you insert both query params at the same time, the request will be invalid.
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | Kit SKU ID, same as the StockKeepingUnitParent |
StockKeepingUnitParent | integer | SKU ID of the Kit SKU |
StockKeepingUnitId | integer | Kit component SKU ID |
Quantity | integer | Component Quantity |
UnitPrice | integer | Component Price |
Response body example:
{
"Id": 7,
"StockKeepingUnitParent": 7,
"StockKeepingUnitId": 1,
"Quantity": 1,
"UnitPrice": 50.0000
}