Retrieve Tax Categories

GET https://api.beelpoint.com/v1/api/invoices/tax-categories

Headers

Name
Type
Description

authorization*

String

API Secret Key

{
  "success": true,
  "taxCategories": [
    {
            "code": "STANDARD_GST",
            "value": "Standard Goods and Services Tax"
        },
        {
            "code": "REDUCED_GST",
            "value": "Reduced Goods and Services Tax"
        },
        {
            "code": "ZERO_GST",
            "value": "Zero Goods and Services Tax"
        },
    //... other tax categories
  ]
}

Last updated