get https://{accountName}.{environment}.com.br/api/catalog/pvt/stockkeepingunit/
Retrieves a specific SKU by its ID. This information is exactly what is needed to create a new SKU.
Attribute | Type | Description |
---|---|---|
skuId | integer | Replace this variable with the SKU ID that you need to retrieve details from |
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
id | integer | SKU ID |
ProductId | integer | ID from the related Product |
IsActive | boolean | If the SKU is Active |
Name | string | SKU Name |
RefId | integer | Ref ID from the related Product |
PackagedHeight | integer | SKU Height |
PackagedLength | integer | SKU Length |
PackagedWidth | integer | SKU Width |
PackagedWeightKg | integer | SKU Weight |
Height | integer | Real SKU Height |
Length | integer | Real SKU Length |
WeightKg | integer | Real SKU Weight |
Width | integer | Real SKU Width |
CubicWeight | integer | SKU Cubic Weight |
IsKit | boolean | If the SKU is budle |
CreationDate | string | SKU Creation Date |
RewardValue | string | Reward value related to SKU |
EstimatedDateArrival | string | Estimated Arrival Date |
ManufacturerCode | string | Product Supplier ID |
CommercialConditionId | integer | SKU Commercial Condition ID |
MeasurementUnit | integer | SKU Unit Measurement |
UnitMultiplier | integer | SKU Unit Multiplier |
ModalType | string | Modal Type |
KitItensSellApart | string | Defines if Kit components can be sold apart |
Videos | string | Videos URL |
Response body example
{
"Id": 1,
"ProductId": 1,
"IsActive": true,
"ActivateIfPossible": true,
"Name": "Ração Royal Canin Feline Urinary 500g",
"RefId": "0001",
"PackagedHeight": 6.5000,
"PackagedLength": 24.0000,
"PackagedWidth": 14.0000,
"PackagedWeightKg": 550.0000,
"Height": 2.2000,
"Length": 4.4000,
"Width": 3.3000,
"WeightKg": 1.1000,
"CubicWeight": 0.4550,
"IsKit": false,
"CreationDate": "2021-06-08T15:25:00",
"RewardValue": null,
"EstimatedDateArrival": null,
"ManufacturerCode": "",
"CommercialConditionId": 1,
"MeasurementUnit": "un",
"UnitMultiplier": 300.0000,
"ModalType": null,
"KitItensSellApart": false,
"Videos": [
"www.google.com"
]
}