post https://{accountName}.{environment}.com.br/api/catalog/pvt/stockkeepingunitkit
Creates a new component of a specific Kit.
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
StockKeepingUnitParent | integer | SKU ID of the Kit SKU |
StockKeepingUnitId | integer | Component SKU ID |
Quantity | integer | Component Quantity |
UnitPrice | integer | Component Price |
Request body example:
{
"StockKeepingUnitParent": 7,
"StockKeepingUnitId": 1,
"Quantity": 1,
"UnitPrice": 50.0000
}
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 | Component SKU ID |
Quantity | integer | Component Quantity |
UnitPrice | integer | Component Price |
Response body example:
{
"Id": 9,
"StockKeepingUnitParent": 7,
"StockKeepingUnitId": 1,
"Quantity": 1,
"UnitPrice": 50.0000
}