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 CurrencyModel| Name | 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": "7a972c3b-a04c-479b-b51d-e9490e386c44",
"FriendlyID": 2,
"Name": "sample string 3",
"Symbol": "sample string 4",
"Code": "sample string 5",
"ConversionRate": 6.0
},
{
"ID": "7a972c3b-a04c-479b-b51d-e9490e386c44",
"FriendlyID": 2,
"Name": "sample string 3",
"Symbol": "sample string 4",
"Code": "sample string 5",
"ConversionRate": 6.0
}
]