Search Virtual Combo SKU Definition API (Beta)
Inbound | POST | /master/virtual-sku/search
Summary
This API is used to search Virtual Combo SKU definition in Omni.
Description
This API will search Virtual Combo SKU definition in Omni.
Request
{
"parentChannelSkus": [
"parentSku1",
"parentSku2"
]
}
Â
Parameter Name | Data Type | Description | Mandatory |
parentChannelSkus | String [ ] | List of parent SKU ids | yes |
Â
Response
{
"virtualSkuDefinitions": [
{
"virtualParentChannelSkuId": "virtual1",
"virtualParentBarcode": "bar1",
"virtualParentClientSkuCode": "VPSku1"
"childSkus": [
{
"channelSkuCode": "SKU1",
"qty": 2,
"barcode": "bar23",
"clientSkuCode" : "ClientSku1"
},
{
"channelSkuCode": "SKU2",
"qty": 1,
"barcode": "bar34",
"clientSkuCode": "ClientSku2"
}
]
}
]
}
Â
Parameter Name | Data Type | Description | Mandatory |
| Object [ ] | List of virtual SKU definitions | yes |
| String | SKU code of virtual SKU | yes |
| String | Â | no |
| String | Code to uniquely identify a virtual parent sku at client level | no |
| Object [ ] | List of child SKUs | yes |
| String | SKU code of child SKU | yes |
| Integer | Quantity of child SKU | yes |
| String | Â | Â |
| String | Code to uniquely identify a child sku at client level | no |
HttpStatus : 200