Versions Compared

Key

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

Inbound | POST | /items/itemCodes

curl --location ‘https://staging-common.omni.increff.com/assure-magic2/items/itemCodes’ \
--header ‘authusername: AKG_ERP_TEST-1200054009’ \
--header ‘authpassword: 2f349bf8-a0c2-4ce5-acc3-6ef845afdb41’ \
--header ‘Content-Type: application/json’ \
--data ‘’

Summary

This API can be used to to generate new Items in WMS against the itemsCodes given.

...

Request

Code Block
languagejson
{
    “items”"items": [
        {
      “channelSkuCode”      "channelSkuCode": “3001000000050”,
      “itemCodes”"3001000000050",
      "itemCodes": [
        “TEST
        "TEST_1_1”
      ]
    }
  1"
      ]
    }
  ]
}

 

Parameter Name

Data Type

Description

Mandatory

channelSkuCode

String

Order Identifier for Inward order used while creating Purchase order in WMS

Note

Max Limit: 5000 SKUs in one request

Yes

itemCodes

String

ERP channel name

Note

Max Limit: 50000 ItemCode in one request.

Yes

...