LogoLogo
API StatusPartner Portal
HomeGuidesAPI ExplorerSDKsGitHubSupport
HomeGuidesAPI ExplorerSDKsGitHubSupport
  • API Concepts
    • Overview
    • Environments and URLs
    • Authentication
    • API versioning
    • Rate limiting
    • HTTP headers
    • Pagination, sorting, and filtering
  • General
  • Common
  • Accounts payable
  • Accounts receivable
  • E-invoicing
  • Payments
  • Accounting integration
  • Expense management
  • Utilities
API StatusPartner Portal
Expense managementAccounting tax rates

Get a tax rate account by ID

GET
/accounting_tax_rates/:tax_rate_id
GET
/v1/accounting_tax_rates/:tax_rate_id
1curl https://api.sandbox.monite.com/v1/accounting_tax_rates/tax_rate_id \
2 -H "x-monite-version: 2023-09-01" \
3 -H "x-monite-entity-id: 9d2b4c8f-2087-4738-ba91-7359683c49a4" \
4 -H "Authorization: Bearer <token>"
Try it
1{
2 "id": "id",
3 "created_at": "2024-01-15T09:30:00Z",
4 "updated_at": "2024-01-15T09:30:00Z",
5 "code": "code",
6 "components": [
7 {
8 "is_compound": true,
9 "name": "name",
10 "rate": 1
11 }
12 ],
13 "description": "description",
14 "effective_tax_rate": 1,
15 "is_external": true,
16 "name": "name",
17 "status": "status",
18 "total_tax_rate": 1
19}
Get tax rate account by id

Path parameters

tax_rate_idstringRequired

Headers

AuthorizationstringRequired
Bearer authentication of the form `Bearer <token>`, where token is your auth token.
x-monite-versionstringRequired
x-monite-entity-idstringRequired
The ID of the entity that owns the requested resource.

Response

Successful Response
idstringformat: "uuid"
created_atdatetime
The timestamp when the tax rate was created.
updated_atdatetime
The timestamp when the tax rate was last updated.
codestring or null
Code for the tax rate from the accounting platform.
componentslist of objects or null
descriptionstring or null
Description of the tax rate
effective_tax_rateinteger or null
Effective tax rate in percent [minor units](https://docs.monite.com/references/currencies#minor-units). Example: 12.5% is 1250.
is_externalboolean or nullDefaults to false
Whether the tax rate is from an external system
namestring or null
statusstring or null
total_tax_rateinteger or null
Total (not compounded) sum of the components of a tax rate in [minor units](https://docs.monite.com/references/currencies#minor-units). Example: 12.5% is 1250.

Errors

Was this page helpful?
Previous

Delete a tax rate

Next
The ID of the entity that owns the requested resource.
Successful Response

Total (not compounded) sum of the components of a tax rate in minor units. Example: 12.5% is 1250.

Effective tax rate in percent minor units. Example: 12.5% is 1250.

Bearer authentication of the form Bearer <token>, where token is your auth token.