Kassa Compleet
The JSON Schema of a «POST /v1/orders/» says:
"vat_percentage": {
"description": "Percentage of tax rate, multiplied by 100 and provided as an integer. i.e. 17.50% should be sent as 1750",
"type": "integer",
"minimum": 0,
"maximum": 10000
}
Ginger Payments:
The JSON Schema of a «POST /v1/orders/» says:
"vat_percentage": {
"type": ["number", "null"],
"minimum": 0,
"maximum": 100
}