Skip to end of banner
Go to start of banner

Search UOM SKU definitions

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Inbound | POST | /master/uom-sku/search

Summary

This API is used to search a UOM SKU definition.

Description

For a set of UOM client SKU Ids, the ERP can search for the UOM SKU Definition.

Request

{
  "uomClientSkuIds": [
    "98654342567", "98654342568"
  ]
}

Parameter Name

Data Type

Description

Mandatory

uomClientSkuIds

String []

It represents the UOM Client SKU ID, a unique identifier for a specific UOM product.

yes

Response

{
  "uomSkuDefinitions": [
    {
      "childClientSkuId": "98745678932",
      "childUomQty": 24,
      "uomClientSkuId": "98654342567"
    },
    {
      "childClientSkuId": "98745678933",
      "childUomQty": 25,
      "uomClientSkuId": "98654342568"
    }
  ]
}

HttpStatus : 200

Parameter Name

Data Type

Description

Mandatory

uomSkuDefinitions

Object [ ]

SKU definitions of the product

yes

uomClientSkuId

String

It represents the UOM Client SKU ID, a unique identifier for a specific UOM product.

yes

childClientSkuId

String

It represents a unique identifier for the next SKU that the UOM can be broken into.

yes

childUomQty

Integer

It represents the number of child products that a Main/ UOM product can be broken into.

yes

Validations/ Constraints

  • Master data should be present in the system for UOM Client SKU with the is_uom flag should be true in master data.

  • The UOM Sku Definition should be present in the system for the UomClientSku.

  • No labels