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/client/assortment/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'{ "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ], "GetCultureProperties": [ "string" ] }
Updated assortment data
Indicates whether the description is inherited from the default culture
The culture-specific information for the client assortment
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"Code": "string",
"Changed": "string",
"ChangedBy": "string",
"Cultures": [
{
"CultureCode": "string",
"Name": "string",
"IsNameInherited": true,
"Description": "string",
"IsDescriptionInherited": true,
"IsTranslated": true,
"EntityCultureIdName": "string"
}
],
"GetCultureProperties": [
"string"
]
}'0
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment \
-H 'account-id: 0' \
-H 'application-id: 0'[ { "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "Changed": "string", "ChangedBy": "string", "Cultures": [ … ], "GetCultureProperties": [ … ] } ]
Assortment to create
Indicates whether the description is inherited from the default culture
The culture-specific information for the client assortment
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"Code": "string",
"Changed": "string",
"ChangedBy": "string",
"Cultures": [
{
"CultureCode": "string",
"Name": "string",
"IsNameInherited": true,
"Description": "string",
"IsDescriptionInherited": true,
"IsTranslated": true,
"EntityCultureIdName": "string"
}
],
"GetCultureProperties": [
"string"
]
}'0