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

Sales Orders List

GET
https://api.bizeebuy.com/v1/sales-orders
This API provides Sales Channel wise data for SKUs sold during a date range along with the Total sales volumes and the Total Amount of the sales done.

Request

Header Params

Body Params application/json

Example
{
    "method":"month",
    "from_date":"2024-01-01",
    "to_date":"2025-01-31"
}

Responses

🟢200Success
application/json
Body

Example
{
    "data": [
        {
            "order_id": 1234546,
            "order_type": "B2B/Retail",
            "channel_id": "Retail",
            "channel": 105,
            "order_no": "ORD/0001234",
            "order_date": "2025-10-01",
            "pono": "CUSTPO/2526/001",
            "po_date": "2025-10-01",
            "created_by": "Mr. AB Kumar",
            "warehouse": "Central Warehouse",
            "exp_dispatch_date": "2025-10-31",
            "reference": null,
            "appointment_date": "2025-10-31",
            "expiry_date": "2025-10-15",
            "order_status": "CREATED",
            "status_code": 1,
            "taxable_amt": "30000",
            "tax_amt": "1500",
            "shipping_amt": "0.00",
            "adjustment": {
                "label": "Adjustment",
                "amt": "0.00"
            },
            "total_amt": "31500",
            "customer": {
                "customer_name": "My Sales Customer",
                "customer_code": "CUST-001",
                "billing": {
                    "buyer": "My Sales Customer",
                    "address1": "Address line 1",
                    "address2": "Address line 2",
                    "city": "New Delhi",
                    "state": "Delhi",
                    "country": "India",
                    "pincode": "110011",
                    "gstn": "07ABCDE1245F1ZX",
                    "phone": "7845784578",
                    "email": "abcmanfu@gmail.com"
                },
                "shipping": {
                    "buyer": "My Sales Customer",
                    "address1": "Address line 1",
                    "address2": "Address line 2",
                    "city": "New Delhi",
                    "state": "Delhi",
                    "country": "India",
                    "pincode": "110011",
                    "gstn": "07ABCDE1245F1ZX",
                    "phone": "7845784578",
                    "email": "abcmanfu@gmail.com"
                }
            },
            "seller": {
                "name": "ALL RM Suppliers Pvt Ltd",
                "address1": "Address line 1",
                "address2": "Address line 2",
                "city": "Ajmer",
                "state": "Rajasthan",
                "country": "India",
                "pincode": "305001",
                "gstn": "08EDDAE1245F1ZX",
                "phone": "8798798794",
                "email": "sales@allrmsupppvltd.com"
            },
            "items": [
                {
                    "type": "FG",
                    "itemcode": "FG00123",
                    "itemname": "Selling Item One",
                    "description": "Description goes here",
                    "hsn": "984158",
                    "qty": "1000.00",
                    "uom": "kg",
                    "mrp": "10.50",
                    "rate": "10.00",
                    "discount_per": "0.00",
                    "discount_amt": "0.00",
                    "effetive_rate": "10.00",
                    "taxrate": "5",
                    "taxable_amt": "10000",
                    "tax_amt": "500",
                    "total_amt": "10500"
                },
                {
                    "type": "FG",
                    "itemcode": "FG00124",
                    "itemname": "Selling Item 2",
                    "description": "Description goes here",
                    "hsn": "984144",
                    "qty": "500.00",
                    "uom": "kg",
                    "mrp": "42.00",
                    "rate": "40.00",
                    "discount_per": "0.00",
                    "discount_amt": "0.00",
                    "effetive_rate": "40.00",
                    "taxrate": "5",
                    "taxable_amt": "20000",
                    "tax_amt": "1000",
                    "total_amt": "21000"
                }
            ]
        }
    ]
}
Previous
Get Sales Invoices
Next
Item Master - FG
Built with