extension/module/tax/get
POST
/extension/module/tax/getThis returns the list of taxes available for the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
Filters the list by the name.
Filters the list by the title.
Filters the list by the status.
Filter the list of taxes modified after the spcified date.
Page number of the results.
The key for the ordering of the results. Accepts "name", "status", "rate", "sort_order", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"filter_name": "string",
"filter_title": "string",
"filter_status": 0,
"filter_date_modified": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available if there is no error.
The list of templates available if there is no error.
The tax ID.
The tax name.
The tax title.
The tax status.
The tax rate.
The tax type.
The tax sort order.
The tax settings key-value.
The date time the tax was last modified.
The items specific to the tax.
{
"error": [
"string"
],
"total": 0,
"taxes": [
{
"tax_id": 0,
"name": "string",
"title": "string",
"status": true,
"rate": 0,
"type": "string",
"sort_order": 0,
"configuration": {},
"date_modified": "string",
"items": {}
}
]
}