OK
curl -i -X GET \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/{cultureCode}'
{ "Name": "string", "Changed": "string", "ChangedBy": "string", "CultureCode": "string", "IsPrimary": true, "IsActive": true }
curl -i -X PUT \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/{cultureCode}' \ -H 'Content-Type: application/json' \ -d '{ "CultureCode": "string", "IsPrimary": true, "IsActive": true }'
curl -i -X DELETE \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture/{cultureCode}'
curl -i -X GET \ https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture
[ { "Name": "string", "Changed": "string", "ChangedBy": "string", "CultureCode": "string", "IsPrimary": true, "IsActive": true } ]
curl -i -X POST \ https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/application/culture \ -H 'Content-Type: application/json' \ -d '{ "CultureCode": "string", "IsPrimary": true, "IsActive": true }'