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