GET v1/store/currencies
Gets the currencies of the store.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns a list of the store's currencies.
Collection of CurrencyModelName | Description | Type | Additional information |
---|---|---|---|
ID |
The unique ID of the currency. |
globally unique identifier |
None. |
FriendlyID |
The friendly ID of the currency. |
integer |
None. |
Name |
The name of the currency. |
string |
None. |
Symbol |
The symbol of the currency. |
string |
None. |
Code |
The currency code according to the ISO 4217 standard (e.g. "USD"). |
string |
None. |
ConversionRate |
The conversion rate from the store's primary currency to this currency. |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": "fdd30b4e-82ef-41c1-a8a6-866ded326449", "FriendlyID": 2, "Name": "sample string 3", "Symbol": "sample string 4", "Code": "sample string 5", "ConversionRate": 6.0 }, { "ID": "fdd30b4e-82ef-41c1-a8a6-866ded326449", "FriendlyID": 2, "Name": "sample string 3", "Symbol": "sample string 4", "Code": "sample string 5", "ConversionRate": 6.0 } ]