OK
MANAGEMENT API (BETA)
//
Get application country
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/country/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}'
Response
{ "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
- JS
- C#
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' \
-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
- JS
- C#
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country
Response
[ { "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
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Name": "string",
"IsPrimary": true,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string"
}'