Associated merchant SKU interface


POST http://openapi.ck1info.com/v1/InventoryPutawayOrder/Sku/Association
Description: Add the SKU interface for associated merchants. When calling the "Read Incoming Goods Order Information" interface, if it is found that there are inventory codes of unassociated merchant SKUs, this interface needs to be called to establish an association relationship. Failure to establish an association will lead to the obstruction of the outbound process.This situation only occurs in special scenarios where the "Create Incoming Goods Order" interface is not accurately predicted when called, and it belongs to the exception handling process.It is recommended to complete the forecast information during the creation stage of the incoming goods order to avoid additional calls to this interface.
Http 200 - Ok
Http 400 - The association is incorrect. Please handle it according to the error message

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
StorageNoList Collection of AssociateSkuInfo

None.

Required

Sku association list

Request in JSON
{
  "StorageNoList": [
    {
      "StorageNo": "sample string 1",
      "WarehouseCode": "sample string 2",
      "Sku": "sample string 3"
    },
    {
      "StorageNo": "sample string 1",
      "WarehouseCode": "sample string 2",
      "Sku": "sample string 3"
    }
  ]
}

Response

None.