Skip to main content

ProductCurrencyDto

currencystringrequired

Currency code

Possible values: [USD, AUD, GBP, CAD, CNY, EUR, INR, JPY, AED, CHF, BTC, ETH]

pricenumberrequired

Price in the specified currency

Example: 2495
discountnumberrequired

Discount amount

discountUnitstringrequired

Unit for the discount

Possible values: [currency, percentage]

vat object

VAT configuration for this currency

namestringrequired

Name/type of the VAT configuration

Possible values: [exempt, incl_low, incl_high, excl_low, excl_high]

percentagenumberrequired

VAT percentage

Example: 21
countrystringrequired

Country code for the VAT

Possible values: [nl, be, de]

includingbooleanrequired

Whether VAT is included in the price

ProductCurrencyDto
{
"currency": "USD",
"price": 2495,
"discount": 0,
"discountUnit": "currency",
"vat": {
"name": "exempt",
"percentage": 21,
"country": "nl",
"including": true
}
}