Skip to end of banner
Go to start of banner

Search Article Master API

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 Next »

Inbound | POST | /master/articles/search

Summary

This API is used to search existing article masters in Omni.

Description

This API will search article masters in Omni. 

Note : Single payload can contain upto 5000 articles.

This API does not return SKU Attributes, or virtual SKU definition if any.

Request

{
  "channelSkuCodes": [
    "100565437",
    "100565435"
  ]
}

Parameter Name

Data Type

Description

Mandatory

channelSkuCodes

String [ ]

List of channelSkuCodes(Code used by channel to identify an SKU). Max Limit is 5000

yes

Response

{
  "articleMasters": [
    {
      "channelSkuCode": "channelSkuCode1",
      "category": "category",
      "brand": "BrandFactory",
      "styleCode": "erp article style",
      "mrp": 1299,
      "hsn": "hsn1234",
      "imageUrl": "HTTP://www.mybrand.com/styl123.jpg",
      "name": "product name",
      "taxRule": "GST_3",
      "size": "xl",
      "color": "blue"
    },
    {
      "channelSkuCode": "channelSkuCode2",
      "category": "category",
      "brand": "puma",
      "styleCode": "erp article style",
      "mrp": 1299,
      "hsn": "hsn1234",
      "imageUrl": "HTTP://www.mybrand.com/styl123.jpg",
      "name": "product name",
      "taxRule": "GST_APPAREL",
      "size": "xl",
      "color": "blue"
    }
  ]
}

Parameter Name

Data Type

Description

Mandatory

articleMasters

Object [ ]

List of article master details.

yes

channelSkuCode

String

Code used by the channel to identify an SKU. It cannot be updated.

yes

category

String

Represents the broad category this product belongs to

no

brand

String

Brand of the sku

no

styleCode

String

styleCode of the product

no

mrp

Double

Maximum Retail Price of the product

no

hsn

String

HSN code of the product

no

imageUrl

String

Public image url of the product. This is used in warehouse at multiple stages to gain efficiency and accuracy

no

name

String

Name of the product

no

taxRule

String

Rule used to compute tax as per Assure Tax Rule Table

no

size

String

Size of the product

no

color

String

Color of the product

no

HttpStatus : 200

  • No labels