GET
/
tax-groups
/
{id}
curl -X GET \
 /tax-groups/{id} \
 --header "Authorization: Bearer <token>"
{
  "id": "00000000-0000-0000-0000-000000000000",
  "internalDescription": "19%",
  "reverseChargeType": "REVERSE_CHARGE",
  "type": "standard",
  "taxes": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "description": "19%",
      "code": "19",
      "rate": 19,
      "validFrom": "2021-01-01",
      "countryCode": "DE"
    }
  ]
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

TaxGroup identifier

Response

200
application/json
TaxGroup resource
internalDescription
string
required

The name of the tax group which will be displayed only in the UI

Maximum length: 255
Example:

"19%"

reverseChargeType
enum<string>
default:REVERSE_CHARGE
required

Defines if reverse charge will be applicated or not

Available options:
REVERSE_CHARGE_DEACTIVATED,
REVERSE_CHARGE,
REVERSE_CHARGE_INTRA_EU_SUPPLY
Example:

"REVERSE_CHARGE"

type
enum<string>
default:standard
required
Available options:
standard,
reduced
Example:

"standard"

id
string
Example:

"00000000-0000-0000-0000-000000000000"

taxes
object[]