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/application/currency/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.
Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.
The date and time when the ApplicationCurrency was last changed, in the application's timezone format
{ "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0, "Changed": "string", "ChangedBy": "string" }
UpdateApplicationCurrency model, only IsPrimary and IsActive can be changed
Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.
Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.
The date and time when the ApplicationCurrency was last changed, in the application's timezone format
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsActive": true,
"IsPrimary": true,
"ExchangeRate": 0,
"Changed": "string",
"ChangedBy": "string"
}'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of application currencies, if any exists
Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.
Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.
The date and time when the ApplicationCurrency was last changed, in the application's timezone format
The name of the user who last changed the ApplicationCurrency, null if never changed
[ { "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0, "Changed": "string", "ChangedBy": "string" } ]
ApplicationCurrency model, only Id required, If IsPrimary is set to true the last primary currency will be unset
Primary application currency. Must be set for only one of the active currencies. Can be updated on an existing ApplicationCurrency.
Exchange rate for the currency compared to the EUR. E.g. if this currency is SEK, and 1 SEK = 0.091 EUR, the exchange rate is 0.0910000000, not editable directly from here. Use the exchange rate management features.
The date and time when the ApplicationCurrency was last changed, in the application's timezone format
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsActive": true,
"IsPrimary": true,
"ExchangeRate": 0,
"Changed": "string",
"ChangedBy": "string"
}'