List Tax Rates
GET {{url}}/tax_rates
Body
PARAM
Key | Datatype | Required | Description |
jurisdiction
|
null | The jurisdiction this tax rate applies to. | |
after
|
null | Cursor pointing to the start of the desired set. | |
before
|
null | Cursor pointing to the end of the desired set. | |
limit
|
null | Number of records to return. |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"tax_rates": [
{
"id": "FR-COR_VAT_1",
"jurisdiction": "FR-COR",
"type": "VAT",
"percentage": "20.0",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "RE_VAT_1",
"jurisdiction": "RE",
"type": "VAT",
"percentage": "8.5",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "MQ_VAT_1",
"jurisdiction": "MQ",
"type": "VAT",
"percentage": "8.5",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "GP_VAT_1",
"jurisdiction": "GP",
"type": "VAT",
"percentage": "8.5",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "GG_VAT_1",
"jurisdiction": "GG",
"type": "VAT",
"percentage": "0.0",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "GI_VAT_1",
"jurisdiction": "GI",
"type": "VAT",
"percentage": "0.0",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "JE_GST_1",
"jurisdiction": "JE",
"type": "GST",
"percentage": "0.0",
"start_date": "2020-07-23",
"end_date": null
},
{
"id": "FR_VAT_1",
"jurisdiction": "FR",
"type": "VAT",
"percentage": "20.0",
"start_date": "2020-06-26",
"end_date": null
},
{
"id": "GB_VAT_1",
"jurisdiction": "GB",
"type": "VAT",
"percentage": "20.0",
"start_date": "2020-06-26",
"end_date": null
}
],
"meta": {
"cursors": {
"before": null,
"after": null
},
"limit": 50
}
} |
ENDPOINTS