Inbound | PUT | /master/articles

Summary

This API is used to update standard SKU master fields.

Description

<aside> 🗒️ Note :

Request

{
  "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",
      "grnToleranceDays": 3,
      "returnToleranceDays": 4,
      "skuDimension": {
        "length": 20.2,
        "breadth": 20.2,
        "height": 20.2,
        "weight": 20.2
      }
    },
    {
      "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",
      "grnToleranceDays": null,
      "returnToleranceDays": null,
      "skuDimension": null
    }
  ]
}
Parameter Name Data Type Description Mandatory
articleMasters Object [ ] List of SKUs that needs to be updated. yes
articleMasters[].channelSkuCode String Code used by the channel to identify an SKU. This will not be updated. yes
articleMasters[].category String Represents the broad category this product belongs to no
articleMasters[].brand String Brand of the product no
articleMasters[].styleCode String styleCode of the product no
articleMasters[].mrp Double Maximum Retail Price of the product no
articleMasters[].hsn String HSN code of the product no
articleMasters[].imageUrl String Public image url of the product. This is used in warehouse at multiple stages to gain efficiency and accuracy no
articleMasters[].name String Name of the product no
articleMasters[].taxRule String Rule used to compute tax as per Increff Omni Tax Rule Table no
articleMasters[].size String Size of the product no
articleMasters[].color String Color of the product no
articleMasters[].grnToleranceDays Integer Valid for perishable products only.
System will provide validation at the time of GRN if products is getting expired in less the GRN tolerance days no
articleMasters[].returnToleranceDays Integer Valid for perishable products only.
System will provide validation at the time of B2C return if products is getting expired in less the returnToleranceDays days no
articleMasters[].skuDimension Object Dimensions of SKU no
articleMasters[].skuDimension.length Double Length of SKU in CMs no
articleMasters[].skuDimension.breadth Double Breadth of SKU in CMs no
articleMasters[].skuDimension.height Double Height of SKU in CMs no
articleMasters[].skuDimension.weight Double Weight of SKU in grams no

Response

EmptyBody

HttpStatus : 200