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/country/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'{ "Id": 0, "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" }
ApplicationCountry model, only IsPrimary and IsActive can be changed
Primary application country. Must be set for only one of the active countries. Can be updated on an existing ApplicationCountry.
The date and time the ApplicationCountry was last changed, in the application's timezone format
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"IsPrimary": true,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of application countries, if any exists
Primary application country. Must be set for only one of the active countries. Can be updated on an existing ApplicationCountry.
The date and time the ApplicationCountry was last changed, in the application's timezone format
Fullname or Systemname of the user who last changed the ApplicationCountry, null if never changed
[ { "Id": 0, "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" } ]
ApplicationCountry model, only Id required, If IsPrimary is set to true the last primary country will be unset
Primary application country. Must be set for only one of the active countries. Can be updated on an existing ApplicationCountry.
The date and time the ApplicationCountry was last changed, in the application's timezone format
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"IsPrimary": true,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'