v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Tax Account Mapping

๐Ÿ”’ Create tax account mapping

This endpoint is currently in Beta and available for testing. It may contain bugs, and breaking changes can occur at any time without prior notice. We do not recommend using Beta endpoints in production environments. Should you choose to use it in production, you assume full responsibility for any resulting issues.

Creates a single tax account mapping.

post/api/v1/taxAccountMapping

Request body

accountIdstring required
countryCodestring
regionstring
zipCodestring
isActiveboolean

Response

Created

idstring

Tax account mapping ID

namestring

Name of the mapping

countryCodestring

Country code in ISO 3166-1 alpha-2 format

regionstring nullable

Region

zipCodestring nullable

ZIP code

isActiveboolean

Is active

createdAtstring date-time

Created at timestamp

updatedAtstring date-time

Updated at timestamp

Example response

{
  "id": "2",
  "name": "",
  "account": {
    "id": "3",
    "accountNumber": "1776",
    "accountType": "tax",
    "name": "VAT Standard",
    "description": "VAT 19%",
    "isStandard": true,
    "deletedAt": null,
    "createdAt": "2025-08-13T09:02:39.808Z",
    "updatedAt": "2025-08-13T09:02:39.808Z"
  },
  "taxType": {
    "id": "1",
    "name": "standard",
    "description": "Standard",
    "isStandard": true,
    "createdAt": "2025-11-26T08:08:53.640784Z",
    "updatedAt": "2025-11-26T08:08:53.640784Z"
  },
  "countryCode": "DE",
  "region": "",
  "zipCode": "",
  "isActive": true,
  "createdAt": "2022-01-01T00:00:00Z",
  "updatedAt": "2022-01-01T00:00:00Z"
}