Skip to content

Retrieve Tax Rate

Request

Retrieves a single tax rate by its ID.

Security
oAuth2ClientCredentials
Path
idstring, (uuid)(Id)required
GET
/v1/accounting/tax-rates/{id}
import requests

id = "YOUR_id_PARAMETER"
url = "https://api.qargo.com/v1/accounting/tax-rates/" + id

headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}

response = requests.get(url, headers=headers)

data = response.json()
print(data)

Responses

Successful Response

Bodyapplication/json
idstring, (uuid)(Id)required

Unique identifier of the record in Qargo.

archivedboolean(Archived)required

Whether this record has been archived.

namestring(Name)required

Display name of the tax rate.

billing_entityobject(BillingEntity)required

Billing entity this tax rate belongs to.

percentagenumber(Percentage)required

Tax percentage, e.g. 21.0.

base_percentagenumber or null(Base Percentage)
Any of:

Base percentage before applying customer/transport-specific tax rules.

number
codestring(Code)required

Code used in the external accounting software.

tax_typestring(TaxRateType)required

Tax type classification.

Enum:"VAT""NO_VAT""REVERSE_CHARGE""TRANSIT""CO_CONTRACTING""OTHER"
invoice_typestring(TaxRateInvoiceType)required

Invoice type this tax rate applies to.

Enum:"SALES""SALES_CREDIT_NOTE""PURCHASE""PURCHASE_CREDIT_NOTE"
descriptionstring(Description)required

Optional description of the tax rate.

Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "archived": true, "name": "string", "billing_entity": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "legal_name": "Qargo BV", "vat_number": "NL123456789B01", "code": "QARGO", "company_registration_number": "12345678", "is_default": false }, "percentage": 0, "base_percentage": 0, "code": "string", "tax_type": "VAT", "invoice_type": "SALES", "description": "string" }