OK
curl -i -X GET \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/country/{id}'
{ "Id": 0, "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" }
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" }'
curl -i -X DELETE \ '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": 0, "Name": "string", "IsPrimary": true, "IsActive": true, "Changed": "string", "ChangedBy": "string" } ]
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" }'