API status

Tax Exemptions

All tax exemptions related paths

post

Create a tax exemption

Creates a tax exemption.

user_idsarray

required

Ids of the users for whom the tax exemption is to be created.

User unique identifier.

Format
uuid
tax_exemption_detailsOne Of

required

Must match one of

tax_exemption_typestring

Tax exemption type

  • SINGLE - Tax exemption for Individual.
  • MARRIED - Tax exemption for married couples.
Enum
  • SINGLE
  • MARRIED
tax_exemption_amountobject (Tax Exemption - Create - Request - Tax Exemption Details - Amount)

required

countrystring

required

Country code. ISO 3166 alpha-2 Codes.

Pattern
^[A-Z]{2}$
valid_to_datestring

Date until which the tax exemption is valid. If it is unlimited, it is omitted. For Germany it is always the last day of the year (YYYY-12-31). RFC 3339, section 5.6

Format
date

Responses

Request examples

{
  "user_ids": [
    "70fd317b-81e1-4f21-9f7e-3b5cb4dfe686"
  ],
  "tax_exemption_details": {
    "tax_exemption_type": "SINGLE",
    "tax_exemption_amount": {
      "currency": "EUR",
      "amount": "1000"
    }
  },
  "country": "DE",
  "valid_to_date": "2024-12-31"
}

Response examples

Creation request accepted.

{
  "id": "f1a57a04-1a89-4dab-ae3a-ff9b2a9377c1"
}
get

Get a tax exemption by ID

Returns the tax exemption specified by its ID

tax_exemption_idstring

required

Format
uuid

Responses