Item Master

The item master API call helps to sync the item master of the business with your data in Datanuum platform. The parameters of this call are dynamic based on the business setup of the menu or inventory.

POST
/inventory/master/submit/

Request elements

Parameter Type Required Description
sku String Yes SKU of the item
name String Yes Name of the item (like visible to the customers)
description String Not mandatory Description of the item
brand String Not mandatory Make/Brand of the item (Eg:- "Apple" for iphone 16)
businessFields JSON Not mandatory Categories or Other fields about the item

Error messages

Error Code Error Message
1004 The following field is not unique
1010 At least one of the following fields is required

 

[
  {
    "sku": "DS2024-01",
    "name": "Elegant Summer Dress",
    "description": "A light and flowy summer dress with floral prints, perfect for casual outings and beach trips. Made from 100% organic cotton.",
    "brand": "Chic Couture",
    "businessFields": {
      "Gender": "Women",
      "ClothingType": "Dress",
      "Material": "Organic Cotton",
      "Pattern": "Floral Print",
      "Collection": "Summer 2024",
      "Occasion": "Casual"
    }
  }
]