get https://{accountName}.{environment}.com.br/api/catalog/pvt/stockkeepingunit
Retrieves information about a specific SKU by its RefId
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | SKU ID |
ProductId | integer | Product ID |
IsActive | boolean | Shows if the SKU is active |
Name | string | SKU Name |
RefId | string | SKU RefId |
PackagedHeight | decimal | Packaged Height |
PackagedLength | decimal | Packaged Length |
PackagedWidth | decimal | Packaged Width |
PackagedWeightKg | decimal | Packaged Weight in Kilos |
Height | decimal | SKU Height |
Length | decimal | SKU Length |
Width | decimal | SKU Width |
WeightKg | decimal | SKU Weight in Kilos |
CubicWeight | decimal | Cubic Weight |
IsKit | boolean | Shows if the SKU is a Kit |
CreationDate | string | SKU Creation Date |
RewardValue | decimal | How much the client will get rewarded by buying the SKU |
EstimatedDateArrival | string | SKU Estimated Date Arrival |
ManufacturerCode | string | Manufacturer Code |
CommercialConditionId | integer | Commercial Condition ID |
MeasurementUnit | string | Measurement Unit |
UnitMultiplier | decimal | Multiplies the amount of SKUs inserted on the cart |
ModalType | string | Defines deliver model |
KitItensSellApart | boolean | Defines if Kit components can be sold apart |
Videos | string | Videos URLs |
Response body example:
{
"Id": 1,
"ProductId": 1,
"IsActive": true,
"Name": "Royal Canin Feline Urinary 500g",
"RefId": "0001",
"PackagedHeight": 6.0000,
"PackagedLength": 24.0000,
"PackagedWidth": 14.0000,
"PackagedWeightKg": 550.0000,
"Height": null,
"Length": null,
"Width": null,
"WeightKg": null,
"CubicWeight": 1.0000,
"IsKit": false,
"CreationDate": "2020-03-12T15:42:00",
"RewardValue": null,
"EstimatedDateArrival": null,
"ManufacturerCode": "",
"CommercialConditionId": 1,
"MeasurementUnit": "un",
"UnitMultiplier": 1.0000,
"ModalType": null,
"KitItensSellApart": false,
"Videos": null
}