Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
languagejson
{
  "parentChannelSkus": [
    "parentSku1",
    "parentSku2"
  ]
}

...

Parameter Name

Data Type

Description

Mandatory

parentChannelSkus

String [ ]

List of parent SKU ids

yes

Response

Code Block
languagejson
{
  "virtualSkuDefinitions": [
    {
      "virtualParentChannelSkuId": "virtual1",
      "virtualParentBarcode": "bar1"
      "childSkus": [
        {
          "channelSkuCode": "SKU1",
          "qty": 2,
          "barcode": "bar23"
        },
        {
          "channelSkuCode": "SKU2",
          "qty": 1,
          "barcode": "bar34"
        }
      ]
    }
  ]
}

...