Basic information
GET /{shopId}/currencies
Returns the currency information of a shop.
Authorisation
OAuth 2.0 Token required with scopes:
products_read
URI parameters
| Name | Type | Description |
|---|---|---|
shopId |
string |
The unique identifier of the shop. Required:
true
Example:
DemoShop
|
Response attributes
| Name | Type | Description |
|---|---|---|
default |
string |
The default currency of the shop according to ISO 4217. |
items |
array of strings |
The additional currencies the shops supports according to ISO 4217. |
Response
HTTP 200
Media type application/json
{
"default": "EUR",
"items": [
"EUR",
"USD"
]
}