The Norce Management API lets you manage configurations and metadata on a client.
The Norce Management API lets you manage configurations and metadata on a client.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/currency
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/currency \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of client currencies, if any exists
The client specific exchange rate of the currency. The rate is defined from EUR (1.000000000) and all other currencies are defined against EUR. If set, Norce will not update exchange rate automatically. It is left to the client to maintain the rate.
The exchange rate of the currency, maintained by Norce. The rate is defined from EUR (1.000000000) and all other currencies are defined against EUR.
[ { "Id": 0, "IsExchangeRateInherited": true, "ExchangeRate": 999999999, "Code": "str", "Name": "string", "InheritedExchangeRate": 999999999, "Changed": "string", "ChangedBy": "string" } ]
a list of client currencies, empty list will remove all currencies from the client
The client specific exchange rate of the currency. The rate is defined from EUR (1.000000000) and all other currencies are defined against EUR. If set, Norce will not update exchange rate automatically. It is left to the client to maintain the rate.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/currency
curl -i -X PUT \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/currency \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '[
{
"Id": 0,
"IsExchangeRateInherited": true,
"ExchangeRate": 999999999
}
]'