Currency field reference

Currency fields are used to store monetary data in custom object records. Each currency field supports only one ISO 4217 currency code, which admins choose when creating the field. After the field is created, the currency can't be changed.

Supported currency codes

The following currency codes are supported:

Currency codeCurrency nameSymbolRegion
AEDUnited Arab Emirates Dirhamد.إMiddle East
ARSArgentine Peso$Latin America
AUDAustralian DollarA$APAC
BGNBulgarian LevEurope
BRLBrazilian RealR$AMER, Latin America
CADCanadian DollarC$AMER
CHFSwiss FrancCHFEurope
CLPChilean Peso$Latin America
CNYChinese Yuan¥APAC
COPColombian Peso$Latin America
CZKCzech KorunaEurope
DKKDanish KroneEurope
EUREuroEurope
GBPBritish Pound Sterling£Europe
HKDHong Kong DollarHK$APAC
HUFHungarian ForintEurope
IDRIndonesian RupiahAPAC
ILSIsraeli ShekelMiddle East
INRIndian RupeeAPAC
JPYJapanese Yen¥APAC
KWDKuwaiti Dinarد.كMiddle East
MXNMexican Peso$AMER, Latin America
NOKNorwegian KronekrEurope
NTDNew Taiwan DollarAPAC
PHPPhilippine PesoAPAC
PENPeruvian SolS/.Latin America
PLNPolish ZłotyEurope
QARQatari Riyalر.قMiddle East
RONRomanian LeuEurope
RUBRussian RubleEurope
SARSaudi Riyalر.سMiddle East
SEKSwedish KronakrEurope
SGDSingapore DollarS$APAC
THBThai BahtAPAC
TRYTurkish LiraMiddle East
UAHUkrainian HryvniaEurope
USDUS Dollar$AMER
VNDVietnamese DongAPAC

Field property

For currency fields, the properties object includes the allowed_currencies array, which must contain exactly one supported ISO 4217 currency code.

Example:

{  "type": "currency",  "key": "order_total",  "properties": {    "allowed_currencies": ["USD"]  }}