Inbound | POST | /external-code

Summary

This API is used to create external item codes in the Increff Label Software system.

Description

This API will create external item codes which can be used to print on the label. This external code will be unique to every item. By default, the external item codes will be used on a FIFO basis. A knockoffKey can be passed with each externalCode to customize this behavior.

Request

{
  "forms": [
    {
      "skuCode": "SKU123",
      "externalCode": "IME6785439875",
      "knockoffKey": "VENDOR 1",
      "attributes": {
        "WAREHOUSE_IN_DATE": "10/10/2022",
        "CREATION_DATE": "09/10/2019"
      }
    },
    {
      "skuCode": "SKU123",
      "externalCode": "IME6785456875",
      "knockoffKey": "VENDOR 2",
      "attributes": {
        "WAREHOUSE_IN_DATE": "10/10/2022",
        "CREATION_DATE": "09/10/2019"
      }
    },
    {
      "skuCode": "SKU234",
      "externalCode": "IME67878156875",
      "knockoffKey": "VENDOR 1",
      "attributes": {
        "WAREHOUSE_IN_DATE": "10/10/2022",
        "CREATION_DATE": "09/10/2019"
      }
    }
  ]
}
Parameter Name Data Type Description Mandatory
skuCode String Represents the SKU ID of the product Yes
externalCode String Represents the unique code for every item. Ex - IMEI number , Ginesys Item code ,etc Yes
knockoffKey String This will be the value by which external codes will be grouped before knockoff No

Request Headers

Header Name Description Mandatory
authDomainname Organisation ID for the client created in Increff Label Software Yes
authUsername Username for integration user created in Increff Label Software Yes
authPassword Password for integration user created in Increff Label Software Yes

Response

Empty Body

HttpStatus Code

200

Note