Home
Home
  1. TrueGradient
  • BizeeBuy API Introduction
  • V1
    • Authentication
      • Generate Access Token
      • Refresh Access Token
    • Masters
      • Get Warehouse List
      • Finished Goods List
      • Material List
    • Purchase
    • GRN
    • Inventory
      • FG Stock Status
      • Material Stock Status
    • Production
      • Batch List
      • Material Consumption
    • Sales
      • Sales Order Dispatch
      • Sales Order Status
      • Turnover & Gross Margin Report
      • FG Demand Status Report
      • Get Sales
      • Get Sales Invoices
    • TrueGradient
      • Item Master - FG
        POST
      • Sales Order Status
        POST
      • FG Inventory-Batchwise
        POST
      • Open Purchase Orders
        POST
      • Item Master - Materials
        POST
      • FG BoM
        POST
  1. TrueGradient

Item Master - Materials

POST
https://api.bizeebuy.com/v1/truegrad/material-master
This API provides an exhaustive data set related to ALL the SKUs[Materials] marked as "Active" in BizeeBuy. It also carries the current stock details along with Reorder Levels defined at an SKU level.

Request

Header Params
Authorization
string 
required
Example:
Bearer 3e4b6e748d872a95aa39483ca54b27cb49eb464f
Warehouse
string 
optional
Example:
cfcd208495d565ef66e7dff9f98764da
Body Params application/json
object {0}
Example
{
    "item_type" : "MAT",
    "limit" : 100
}

Responses

🟢200Success
application/json
Body
product_name
string 
required
product_sku
string 
required
product_category
string 
required
primary_category
string 
required
Item_Type
string 
required
maxProducibleQuantity
integer 
required
inStockQuantity
integer 
required
uom
string 
required
reorder_level
integer 
required
Examples
{
    "data": [
        {
            "product_name": "Combo item",
            "product_sku": "5757654764646",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Physical Combo",
            "maxProducibleQuantity": "300",
            "inStockQuantity": "2049.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "New product post FG Allowed IN BoM",
            "product_sku": "New-PROD-0001",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Bunches",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Physical Combo Test one",
            "product_sku": "ANEW_COMBO",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Physical Combo",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "DSDSFSFS",
            "product_sku": "SFG/01/001",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Physical Combo 01",
            "product_sku": "FG-COMBO-001",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Physical Combo",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Pack",
            "reorder_level": "0.00"
        },
        {
            "product_name": "New Wheat",
            "product_sku": "FG-WHEA-001",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My New Product",
            "product_sku": "FG/ABC/0012",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "500",
            "inStockQuantity": "9.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "MI FG 001",
            "product_sku": "FG/001/001",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "MI SFG 2",
            "product_sku": "SFG/001/002",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "MI2 SFG",
            "product_sku": "SFG/001/001",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Fully Flavored Wheat",
            "product_sku": "FGWHT0001",
            "product_category": "Wheats",
            "primary_category": "FG",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Flavored Wheat",
            "product_sku": "SFGFLWHT01",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Rosted Wheat",
            "product_sku": "SFGRSTWHT01",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Cleaned Wheat",
            "product_sku": "SFGCLWHT01",
            "product_category": "Wheets",
            "primary_category": "Semi Finished",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "2900",
            "inStockQuantity": "0.000000",
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "New KIT for Vth Grage",
            "product_sku": "VEEK0001001",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "10272",
            "inStockQuantity": "3900.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Intermideatory Product 01",
            "product_sku": "DEMO00101",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "67188",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Hair OIL primary item first",
            "product_sku": "VE/HC/HO/MY0001",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Tender Coconut Ice Cream 450 Ml Lid Sticker",
            "product_sku": "33",
            "product_category": "Printed Items",
            "primary_category": "Raw Material",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "40313",
            "inStockQuantity": "6506.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Peanut Butter Cookie 16g Sticker",
            "product_sku": "10",
            "product_category": "Beard Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "2633",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "New Semi Finished Good 121",
            "product_sku": "NEWSFGMAT0001",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "151175",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "change in name for test",
            "product_sku": "SA12121212445",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Chips Combo Pack",
            "product_sku": "CHIPSCOMBO01",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "LIMKCA 100ML",
            "product_sku": "LIMCA100ML",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "30235",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Namkeen 100GM",
            "product_sku": "NAMKEEN100GM",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "30235",
            "inStockQuantity": "-35.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Chips 100GM",
            "product_sku": "CHIPS110MG",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "30235",
            "inStockQuantity": "-65.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My New FG with SFG",
            "product_sku": "MNFGSFG01",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "1400",
            "inStockQuantity": "14401.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My Sample Semi Finished Material 111",
            "product_sku": "HHEDD0001",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "15117",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "UI Change Product",
            "product_sku": "PRODUI00001",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "6500",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "YB - 14159 - 10g Protein Bar - Dispenser Pack ( Blueberry Blast + Choco chip) (PROMO)",
            "product_sku": "ABCDE00012133132",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "2045",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Sample product Info",
            "product_sku": "ABCDE00012133131",
            "product_category": "Test Product Cat",
            "primary_category": "Sample Cat",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "484",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Stationery Kit KG: Premium",
            "product_sku": "SKKP01",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "-50.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Stationery Kit KG : Basic",
            "product_sku": "SKKB01",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "500",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Stationery Kit Primary: Premium",
            "product_sku": "SKPP01",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Stationery Kit Primary: Basic",
            "product_sku": "SKPB01",
            "product_category": "Stationery Kit ",
            "primary_category": "Educational Kits",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "1000",
            "inStockQuantity": null,
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Phy Hyaluronic Acid - Skin Smoothening Face Gel ",
            "product_sku": "PHHY0060FSE5038",
            "product_category": "Face Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Skin toner & Vitamin Moisturizer",
            "product_sku": "PLMV0050DMT4802",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Mandarin & Vitamin C 3% Peptides 3% Caffeine 3% Eye Cream",
            "product_sku": "PLMV0015FSE4819",
            "product_category": "Cream",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PHY Shave-Easy Cooling After Shave Mist 75 ml",
            "product_sku": "PHSE0075SHV0149",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Body Lovin Drivin Me Cherry Body Oil 200ml",
            "product_sku": "BLDC0200BDL2761",
            "product_category": "Body Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Mandarin & 1.5% Vitamin C Toner",
            "product_sku": "PLMV0100FTN4390",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Blueberry & 3% PHA Toner ",
            "product_sku": "PLBE0150FTN4222",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Rice Water & 3% Niacinamide Toner",
            "product_sku": "PLRW0150FTN4215",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Candy Melts Vegan Lip balm Caramel Cravings",
            "product_sku": "PLCM0012LBM4772",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Candy Melts Vegan Lip balm Cookies and Cream",
            "product_sku": "PLCK0012LBM4789",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PLUM BAKUCHIOL & RETINOL 1% SERUM",
            "product_sku": "PLBK0030FSE3096",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PLUM BAKUCHIOL & RETINOL 1% SERUM",
            "product_sku": "PLBK0020FSE3089",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PLUM BULGARIAN ROSE & HYALURONIC ACID 2% SERUM",
            "product_sku": "PLBV0030FSE3058",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PLUM BULGARIAN ROSE & HYALURONIC ACID 2% SERUM",
            "product_sku": "PLBV0015FSE3041",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Rice Water & Niacinamide 10% Serum",
            "product_sku": "PLRW0030FSE3072",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Rice Water & Niacinamide 10% Serum",
            "product_sku": "PLRW0015FSE3065",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Mandarin & Vitamin C Serum 30 ml",
            "product_sku": "PLMV0030FSE2310",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Plum Mandarin & Vitamin C Serum 20 ml",
            "product_sku": "PLMV0020FSE2600",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Melon Bubble Yum 5 gm",
            "product_sku": "PLMB0005LBM3843",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Melon Bubble Yum 12 gm",
            "product_sku": "PLMB0012LBM1153",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Berry Feast 5 gm",
            "product_sku": "PLBF0005LBM3836",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Berry Feast 12 gm",
            "product_sku": "PLBF0012LBM1146",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Mint-O-Coco 12 gm",
            "product_sku": "PLMC0012LBM1160",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Candy Melts Lip Balm - Red Velvet Love 12 gm",
            "product_sku": "PLRV0012LBM1177",
            "product_category": "Lip Balm",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Hawaiian Rumba Colada (Gel Lotion) 240 ml",
            "product_sku": "BLHR0240BLN1016",
            "product_category": "Lotion",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Tropical Tango Colada (Gel Lotion) 240 ml",
            "product_sku": "BLTT0240BLN1009",
            "product_category": "Lotion",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Driving me Cherry Smoothie (Cream Lotion) 25 ml",
            "product_sku": "BLDC0025BLN3638",
            "product_category": "Lotion",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Driving me Cherry Smoothie (Cream Lotion) 240 ml",
            "product_sku": "BLDC0240BLN1030",
            "product_category": "Lotion",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Lychee Cuddle Smoothie (Cream Lotion) 240 ml",
            "product_sku": "BLLC0240BLN1023",
            "product_category": "Lotion",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Vanilla  Vibes Body Oil 100 ml",
            "product_sku": "BLVV0100BDL5267",
            "product_category": "Body Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Hawaiian Rumba Body Oil 200 ml",
            "product_sku": "BLHR0200BDL0781",
            "product_category": "Body Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Vanilla  Vibes Body Oil 30 ml",
            "product_sku": "BLVV0030BDL3645",
            "product_category": "Body Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Vanilla  Vibes Body Oil 200 ml",
            "product_sku": "BLVV0200BDL0798",
            "product_category": "Body Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Driving me Cherry Gel Body Scrub 25 gm",
            "product_sku": "BLDC0025BSC2235",
            "product_category": "Scrub",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Body Lovin Driving me Cherry Gel Body Scrub 200 gm",
            "product_sku": "BLDC0200BSC0767",
            "product_category": "Scrub",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Phy Vitamin C - Face Serum - Skin Brightening",
            "product_sku": "PHVC0030FSE3386",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Phy  Cult-ivator almond +argan beard oil 30 ml",
            "product_sku": "PHAA0030BRD3324",
            "product_category": "Beard Oil",
            "primary_category": "Oil",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Phy Headspace Styling Gel 75 gm ",
            "product_sku": "PHPH0075HRT3362",
            "product_category": "Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PHY In The  Clear  Superlight Moisturiser 15 ml",
            "product_sku": "PHGT0015DMT3409",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PHY In The  Clear  Superlight Moisturiser 75 ml",
            "product_sku": "PHGT0075DMT3287",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Olive & Macadamia Nutri-Shield Pre-Shampoo Hair Oil 90 ml",
            "product_sku": "PLLM0100HRL1505",
            "product_category": "Hair Oil",
            "primary_category": "Hair Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Chamomile toner 200 ml",
            "product_sku": "PLCW0200FTN0263",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Hello Aloe Just Gel 250 gm ",
            "product_sku": "PLHA0250DMT1429",
            "product_category": "Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Hello Aloe caring day moist. 60 ml",
            "product_sku": "PLHA0060DMT0027",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Bright Years Under-Eye Recovery Gel 15 ml",
            "product_sku": "PLBY0015FSE1178",
            "product_category": "Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Bright Years Cell Renewal Serum 30 ml",
            "product_sku": "PLBY0030FSE1147",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Bright Years Restorative Overnight Creme 50 ml",
            "product_sku": "PLBY0050NMT1161",
            "product_category": "Cream",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Bright Years All-Day Defence Cream SPF45 - PA+++ 50 ml",
            "product_sku": "PLBY0050FSP1154",
            "product_category": "SPF",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Grapeseed & Seabuckthorn Nutriplenish Face Mist 100 ml",
            "product_sku": "PLGS0100FMT0720",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Grapeseed & Seabuckthorn Glow Restore Face Oil 30 ml",
            "product_sku": "PLGS0030FCL0713",
            "product_category": "Face Oil",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "E luminence Serum 30 ml",
            "product_sku": "PLEL0030FSE0607",
            "product_category": "Serum",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "E- Luminence Deep Moist. Creme 15 ml",
            "product_sku": "PLEL0015DMT0378",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "E Luminence Deep Moist. Cream 50 ml",
            "product_sku": "PLEL0050DMT0355",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "PLUM GREEN TEA & 10% AHA 5% PHA 0.5% BHA EXFOLIATING PEEL",
            "product_sku": "PLGT0030FSE3744",
            "product_category": "Scrub",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green tea oil free moisturiser 15 ml",
            "product_sku": "PLGT0015FFM3782",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green tea oil free moisturiser 50 ml",
            "product_sku": "PLGT0050FFM2099",
            "product_category": "Moisturiser",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Greentea Clear Spot Light gel 15 ml ",
            "product_sku": "PLGT0015FSE0002",
            "product_category": "Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Day Light SPF35 15 ml",
            "product_sku": "PLGT0015FSP0385",
            "product_category": "SPF",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea SPF Gel-35 PA+++ 50 ml",
            "product_sku": "PLGT0050FSP1321",
            "product_category": "SPF",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green tea Revitalising Face Mist 100 ml",
            "product_sku": "PLGT0100FMT0737",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green tea Toner 50 ml",
            "product_sku": "PLGT0050FTN0309",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green tea Toner 200 ml",
            "product_sku": "PLGT0200FTN0058",
            "product_category": "Toner",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Face wash 15ml",
            "product_sku": "PLGT0015FWA0194",
            "product_category": "Face Wash",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Face wash 25ml",
            "product_sku": "PLGT0025FWA0255",
            "product_category": "Face Wash",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Face wash 75ml",
            "product_sku": "PLGT0075FWA0041",
            "product_category": "Face Wash",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Pore Cleansing Face Wash. 120ML",
            "product_sku": "PLGT0120FWA0538",
            "product_category": "Face Wash",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Night Gel 15 ml",
            "product_sku": "PLGT0015NMT1628",
            "product_category": "Face Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Night Gel 25 ml",
            "product_sku": "PLGT0025NMT0286",
            "product_category": "Face Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Green Tea Night Gel 50 ml",
            "product_sku": "PLGT0050NMT0522",
            "product_category": "Face Gel",
            "primary_category": "Skin Care",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Baby Diapers XXL",
            "product_sku": "BBYDXXL0001",
            "product_category": "Diapers",
            "primary_category": "Disposables",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "-600.000000",
            "uom": "Nos",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Finished Product Five",
            "product_sku": "FINISHED0005",
            "product_category": "IVF",
            "primary_category": "Medical Devices",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "316",
            "inStockQuantity": null,
            "uom": "Piece",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Finished Product Four",
            "product_sku": "FINISHED0004",
            "product_category": "IVF",
            "primary_category": "Medical Devices",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Kg",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Finished Product Three",
            "product_sku": "FINISHED0003",
            "product_category": "IVF",
            "primary_category": "Medical Devices",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Piece",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Finished Product Two",
            "product_sku": "FINISHED0002",
            "product_category": "Equipment",
            "primary_category": "Dental",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Finished Product One",
            "product_sku": "FINISHED0001",
            "product_category": "Equipment",
            "primary_category": "Dental",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "16",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Sample Bom Product",
            "product_sku": "SAMP0012313",
            "product_category": "Cotton",
            "primary_category": "Disposables",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Sample BOM Testing Cloaning",
            "product_sku": "CLONE1112121",
            "product_category": "Irrigation Equipments",
            "primary_category": "Agri Equipment",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Advanced Hair Oil 100ml",
            "product_sku": "ADH100L",
            "product_category": "Anesthesia & ICU Care",
            "primary_category": "Disposables",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "14415.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My Hair Oil 100ml",
            "product_sku": "ADHO100",
            "product_category": "Pharmaceutical Products",
            "primary_category": "Pharmaceutical Products",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My Sample Printers",
            "product_sku": "MYSAMPNT0012",
            "product_category": "Peripherals",
            "primary_category": "Hardware",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "484",
            "inStockQuantity": null,
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Coconut OIL 100ML",
            "product_sku": "COCOOIL100",
            "product_category": "Infant Care",
            "primary_category": "Disposables",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": null,
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "My Compact Printer",
            "product_sku": "COMPRINT001",
            "product_category": "Peripherals",
            "primary_category": "Hardware",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "0.00"
        },
        {
            "product_name": "Man Matter Bottle 150ML",
            "product_sku": "MMBTL00123",
            "product_category": "Ancillary",
            "primary_category": "Packaging Material",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "0",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "3000.00"
        },
        {
            "product_name": "Bottle Cap",
            "product_sku": "BTL000123",
            "product_category": "Ancillary",
            "primary_category": "Packaging Material",
            "Item_Type": "Semi Finished Good",
            "maxProducibleQuantity": "14824",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "2000.00"
        },
        {
            "product_name": "Home Desktop",
            "product_sku": "HMDSK00012",
            "product_category": "Personal Computers",
            "primary_category": "Hardware",
            "Item_Type": "Finished Good",
            "maxProducibleQuantity": "5136",
            "inStockQuantity": "0.000000",
            "uom": "Units",
            "reorder_level": "2500.00"
        }
    ],
    "_links": {
        "self": {
            "href": "http://localhost/bizeebuy/rest/web/v1/truegrad/item-master?page=1"
        },
        "first": {
            "href": "http://localhost/bizeebuy/rest/web/v1/truegrad/item-master?page=1"
        },
        "last": {
            "href": "http://localhost/bizeebuy/rest/web/v1/truegrad/item-master?page=1"
        }
    },
    "_meta": {
        "totalCount": 119,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 500
    }
}
Previous
Open Purchase Orders
Next
FG BoM
Built with