OK
MANAGEMENT API (BETA)
/- Update application currency
Get application currency
Delete application currency
List application currencies
Insert application currency
Update application curren...
Norce Management API (v1)
Download OpenAPI description
Languages
Servers
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
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}'
Response
{ "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0.1, "Changed": "string", "ChangedBy": "string" }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}
- cURL
- JS
- C#
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' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsActive": true,
"IsPrimary": true,
"ExchangeRate": 0.1,
"Changed": "string",
"ChangedBy": "string"
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}
- cURL
- JS
- C#
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency/{id}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency
Response
[ { "Id": 0, "Code": "string", "Name": "string", "IsActive": true, "IsPrimary": true, "ExchangeRate": 0.1, "Changed": "string", "ChangedBy": "string" } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/currency \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"IsActive": true,
"IsPrimary": true,
"ExchangeRate": 0.1,
"Changed": "string",
"ChangedBy": "string"
}'