v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Tax Type Mapping

๐Ÿ”’ Get Tax Type Mapping Entry with Extended Detail by ID

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.

Retrieves a specific tax type mapping entry by its ID with preloaded related objects.

get/api/v1/taxTypeMapping/{id}/extendedDetail

Path parameters

idstring required

The ID of the tax type mapping entry to retrieve.

Response

Successful operation

Example response

{
  "data": {
    "id": "3",
    "taxTypeId": "2",
    "taxType": {
      "id": "2",
      "name": "reduced",
      "description": "Reduced",
      "isStandard": true,
      "createdAt": "2025-11-26T08:08:53.640784Z",
      "updatedAt": "2025-11-26T08:08:53.640784Z"
    },
    "countryCode": "AT",
    "productId": "1",
    "productName": "test",
    "isActive": true,
    "createdAt": "2026-03-09T15:43:55.092219Z",
    "updatedAt": "2026-03-09T15:43:55.092219Z",
    "defaultTaxForCountry": {
      "id": "3",
      "name": "AT-20",
      "taxType": {
        "id": "1",
        "name": "standard",
        "description": "Standard",
        "isStandard": true,
        "createdAt": "2025-11-26T08:08:53.640784Z",
        "updatedAt": "2025-11-26T08:08:53.640784Z"
      },
      "taxRate": 0.2,
      "validFrom": "2025-12-31T23:06:32Z"
    },
    "targetTaxForCountry": {
      "id": "4",
      "name": "AT-13",
      "taxType": {
        "id": "2",
        "name": "reduced",
        "description": "Reduced",
        "isStandard": true,
        "createdAt": "2025-11-26T08:08:53.640784Z",
        "updatedAt": "2025-11-26T08:08:53.640784Z"
      },
      "taxRate": 0.13,
      "validFrom": "0000-12-31T23:06:32Z"
    }
  }
}