Currency Data Type

The Currency resource represents a currency used by selected shop's country.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the Currency.
code string The three-letter code (ISO 4217 format) for the currency.
symbol string Global currency symbol.
name string The name of the currency.
Currency (JSON)
{
  "currency" : {
    "id" : 12345,
    "code" : "EUR",
    "symbol" : "€",
    "name" : "Euro"
  }
}
Currency Data Type

The Currency resource represents a currency used by selected shop's country.

Available Since
1.3.0
Properties
Name Type Description
code string The three-letter code (ISO 4217 format) for the currency.
id int Unique numeric identifier for the Currency.
name string The name of the currency.
symbol string Global currency symbol.
Currency (XML)
<currency>
  <id>...</id>
  <code>EUR</code>
  <symbol>€</symbol>
  <name>Euro</name>
</currency>