Outbound | GET | /serial-code

Summary

Increff Label Software's API streamlines the flow to get SKU details through serial code / external serial code.

Description

This API will provide a way for external systems to get SKU details from Increff Label Software using Serial Codes/ External Serial Codes.

Request

{
  "serialCodes": [
    "4AD51288",
    "ABC45609"
  ],
  "isExternalSerialCode": false
}
Parameter Name Data Type Description Mandatory
serialCodes List<String> Serial Code / External Serial Code Yes
isExternalSerialCode Boolean Represents if the serialCodes contain Increff Label Software Serial Codes or External Serial Codes No ( Default value is false i.e.
serialCodes contains Increff Label Software Serial Codes.

<aside> ℹ️ Note: The maximum size of the list is 500.

</aside>

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

Returns a Map with SerialCode/External Serial Code as Key and SKU details as value.

[
  {
    "increffSerialCode": "4AD51288",
    "externalSerialCode": null,
    "escAttributes": {},
    "skuCode": "sku1",
    "skuAttributes": {
      "attribute1": "3915",
      "attribute2": "black",
      "attribute3": "2023",
      "attribute4": "09",
      "attribute5": "07",
      "attribute6": "nodata",
      "barcode": "sku1",
      "brand": "Brand 1",
      "category": "casuals",
      "description": "Men Black Batman Printed T-shirt",
      "image_url": "example.com/1.jpg",
      "mrp": "2828",
      "name": "Black T-shirt",
      "price": "449",
      "product_code": "23142432",
      "size": "M",
      "sku_code": "sku1"
    }
  }
]

HttpStatus Code

200