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

Open Purchase Orders

POST
https://api.bizeebuy.com/v1/truegrad/pending-deliveries
This API provides an exhaustive data set related to the open purchaes orders pending for deliveries.

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
po_date
string 
required
PO_Status
string 
required
item_code
string 
required
product_name
string 
required
pending_qty
number 
required
uom
string 
required
seller_name
string 
required
seller_location
string 
required
buyer_shipping_location
string 
required
delivery_date
string 
required
days_no
number 
required
Examples
{
    "data": [
        {
            "po_no": "PO4578D4",
            "po_date": "2024-12-24",
            "PO_Status": "Raised",
            "item_code": "ITEM78795",
            "product_name": "My Sample Item 1",
            "pending_qty": "5000",
            "uom": "Units",
            "seller_name": "Vendor Private Limited",
            "seller_location": "Meerut, Uttar Pradesh, 250002",
            "buyer_shipping_location": "Delhi, Delhi, 110041",
            "delivery_date": "2025-01-20",
            "days_no": "-73"
        },
        {
            "po_no": "PO4578DS",
            "po_date": "2025-01-04",
            "PO_Status": "Raised",
            "item_code": "ITEM00123",
            "product_name": "My Sample Item 1",
            "pending_qty": "5000",
            "uom": "Units",
            "seller_name": "Vendor Private Limited",
            "seller_location": "Meerut, Uttar Pradesh, 250002",
            "buyer_shipping_location": "Delhi, Delhi, 110041",
            "delivery_date": "2025-01-30",
            "days_no": "-63"
        }
    ],
    "_links": {
        "self": {
            "href": "https://api.bizeebuy.com/v1/truegrad/pending-deliveries?page=1"
        },
        "first": {
            "href": "https://api.bizeebuy.com/v1/truegrad/pending-deliveries?page=1"
        },
        "last": {
            "href": "https://api.bizeebuy.com/v1/truegrad/pending-deliveries?page=1"
        }
    },
    "_meta": {
        "totalCount": 34,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 500
    }
}
Previous
FG Inventory-Batchwise
Next
Item Master - Materials
Built with