API Reference
Tax rates
Endpoints
GET /v1/tax-rates/
The tax rate object
Attributes | Type | Required | Description |
---|---|---|---|
id | string | True | id of the object. |
name | string | False | Name. |
friendly_name | string | False | Friendly name. |
description | string | False | Description. |
rate | string | False | rate in decimals. |
tax_type | string | False | One of SALES , PURCHASES , REVERSE_CHARGE . |
Example
{
"id": "tax_x908asdlmn298123lnm",
"name": "Standard-Rated VAT",
"description": "KSA Standard-Rated VAT",
"rate": "0.15",
"tax_type": "SALES"
}
List tax rates
List the tax rates of your organization.
Request
curl --location \
--request GET 'https://api.wafeq.com/v1/tax-rates/' \
--header 'Authorization: Api-Key <api_key>' \
--header 'Content-Type: application/json'