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/product/type/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/type/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'{ "Id": 0, "Name": "string", "IsNameInherited": true, "DefaultName": "string", "Description": "string", "IsDescriptionInherited": true, "DefaultDescription": "string", "GroupName": "string", "SortOrder": 0, "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
Type to update
The name of the product type for the default language
The description of the product type in a specific language
The default description of the product type for the default language
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/type/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/type/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"IsNameInherited": true,
"DefaultName": "string",
"Description": "string",
"IsDescriptionInherited": true,
"DefaultDescription": "string",
"GroupName": "string",
"SortOrder": 0,
"Changed": "string",
"ChangedBy": "string",
"Cultures": [
{
"CultureCode": "string",
"IsTranslated": true,
"Name": "string",
"IsNameInherited": true,
"Description": "string",
"IsDescriptionInherited": true
}
]
}'0
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/type
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/type \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of product types, if any exists
The name of the product type for the default language
The description of the product type in a specific language
The default description of the product type for the default language
The culture-specific information for the product type
[ { "Id": 0, "Name": "string", "IsNameInherited": true, "DefaultName": "string", "Description": "string", "IsDescriptionInherited": true, "DefaultDescription": "string", "GroupName": "string", "SortOrder": 0, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]