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

FG BoM

POST
https://api.bizeebuy.com/v1/truegrad/fg-bom
This API provides an exhaustive data set related to the active finished goods bom

Request

Header Params
Authorization
string 
required
Example:
Bearer 3e4b6e748d872a95aa39483ca54b27cb49eb464f
Warehouse
string 
optional
Example:
cfcd208495d565ef66e7dff9f98764da
Body Params application/json
object {0}
Example
{
   
}

Responses

🟢200Success
application/json
Body
po_no
string 
required
product_sku
string 
required
product_uom
string 
required
materials
object 
required
material_name
string 
required
material_code
string 
required
req_qty
number 
required
material_uom
string 
required
Examples
{
    "data": [
        {
           "product_name": "productname two",
            "product_sku": "productsku01",
            "product_uom": "Units",
            "materials": [
                {
                    "material_name": "Row Material",
                    "material_code": "RM00359",
                    "req_qty": "1.0000000000",
                    "material_uom": "Units"
                },
                {
                    "material_name": "Monocarton",
                    "material_code": "Mono0127",
                    "req_qty": "1.0000000000",
                    "material_uom": "Units"
                }
        },
        {
            "product_name": "productname one",
            "product_sku": "productsku00",
            "product_uom": "Units",
            "materials": [
                {
                    "material_name": "Row Material",
                    "material_code": "RM00359",
                    "req_qty": "1.0000000000",
                    "material_uom": "Units"
                },
                {
                    "material_name": "Monocarton",
                    "material_code": "Mono0127",
                    "req_qty": "1.0000000000",
                    "material_uom": "Units"
                }
            ]
        }
    ]
}
Previous
Item Master - Materials
Built with