Retrieves a single tax rate by its ID.
Security
oAuth2ClientCredentials
GET
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)Successful Response
Any of:
Base percentage before applying customer/transport-specific tax rules.
number
Tax type classification.
Enum:"VAT""NO_VAT""REVERSE_CHARGE""TRANSIT""CO_CONTRACTING""OTHER"
Invoice type this tax rate applies to.
Enum:"SALES""SALES_CREDIT_NOTE""PURCHASE""PURCHASE_CREDIT_NOTE"
Response
- number
- null
{ "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" }