Assortment id
MANAGEMENT API (BETA)
/- List active assortments
Get assortment
Update assortment
Delete assortment
Insert assortment
List active assortments
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/client/assortment/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}'
Response
{ "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}
- cURL
- JS
- C#
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' \
-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
}
]
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}
- cURL
- JS
- C#
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment/{id}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment
Response
[ { "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/client/assortment \
-H 'Content-Type: application/json' \
-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
}
]
}'