Add Invoice

Creates an invoice in your business

Important Links

Run in Postman   API Guide  


Request Body Example

{
    "sgst": 0,
    "place_of_supply": "Gujarat",
    "discount": 500,
    "gst": 179.82,
    "igst": 179.82,
    "@entity": "tax_invoice",
    "invoice_date": "01/01/2020",
    "total": 1178.82,
    "balance": 1178.82,
    "supplier": {
        "scheme": "Regular",
        "contact": {
            "mobile": "1234567890",
            "email": "[email protected]",
            "@entity": "contact"
        },
        "name": "John Doe Private Limited",
        "registered": true,
        "billing_address": {
            "area": "Vastrapur",
            "country": "India",
            "city": "Ahmedabad",
            "street": "1, ABC Lakeview Tower",
            "state": "Gujarat",
            "full_address": "1, ABC Lakeview Tower, Ahmedabad-380015 Gujarat, India",
            "type": "Billing",
            "@entity": "address"
        },
        "gstin": "24AAACQ3770E2ZZ",
        "display_name": "John",
        "@entity": "dealer"
    },
    "invoice_number": "28370",
    "document_type": "Invoice",
    "purchaser": {
        "contact": {
            "mobile": "1234567891",
            "email": "[email protected]",
            "@entity": "contact"
        },
        "name": "[email protected]",
        "registered": false,
        "billing_address": {
            "full_address": "Gujarat",
            "type": "Billing",
            "@entity": "address"
        },
        "display_name": "[email protected]",
        "@entity": "dealer"
    },
    "payment_status": "Unpaid",
    "is_reverse_charge": false,
    "cgst": 0,
    "transaction_type": "Sale",
    "cess": 0,
    "reference_number": "order_A927311111",
    "url": "...",
    "taxable_value": 999,
    "subtotal": 1499,
    "is_round_off": false,
    "items": [
        {
            "is_rate_inclusive_of_tax": false,
            "code": "998222",
            "quantity": 1,
            "item_type": "Services",
            "description": "Product 1",
            "discount": 500,
            "sale_price": 1499,
            "@entity": "item",
            "gst_rate": 18,
            "unit": "UNT",
            "is_exempt": false,
            "purchase_price": 1499
        }
    ],
    "is_uploaded": false,
    "is_cancelled": false,
    "status": "Unsent"
}
Language
Click Try It! to start a request and see the response here!