Taxes
Retrieve a Tax
This endpoint retrieves an existing tax representing a customizable tax rate applicable to either the organization or a specific customer. The tax is identified by its unique code.
GET
/
taxes
/
{code}
Authorization
Path
LAGO_URL="https://api.getlago.com"
API_KEY="__YOUR_API_KEY__"
curl --location --request GET "$LAGO_URL/api/v1/taxes/:code" \
--header "Authorization: Bearer $API_KEY"
{
"tax": {
"add_ons_count": 123,
"applied_to_organization": true,
"charges_count": 123,
"code": "french_standard_vat",
"created_at": "2023-07-06T14:35:58Z",
"customers_count": 123,
"description": "French standard VAT",
"lago_id": "1a901a90-1a90-1a90-1a90-1a901a901a90",
"name": "TVA",
"plans_count": 123,
"rate": 20
}
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
code
string
requiredThe code of the tax. It serves as a unique identifier associated with a particular tax. The code is typically used for internal or system-level identification purposes.
Response
200 - application/json
tax
object
requiredWas this page helpful?
LAGO_URL="https://api.getlago.com"
API_KEY="__YOUR_API_KEY__"
curl --location --request GET "$LAGO_URL/api/v1/taxes/:code" \
--header "Authorization: Bearer $API_KEY"
{
"tax": {
"add_ons_count": 123,
"applied_to_organization": true,
"charges_count": 123,
"code": "french_standard_vat",
"created_at": "2023-07-06T14:35:58Z",
"customers_count": 123,
"description": "French standard VAT",
"lago_id": "1a901a90-1a90-1a90-1a90-1a901a901a90",
"name": "TVA",
"plans_count": 123,
"rate": 20
}
}