Product flag id
MANAGEMENT API (BETA)
/- Update product relation type
Get product flag
List active product flags
Insert product relation type
Update product relation t...
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/product/relationtype/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype/{id}'
Response
{ "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": [ { … } ] }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype/{id}
- cURL
- JS
- C#
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' \
-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
}
]
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype
Response
[ { "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": [ … ] } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/relationtype \
-H 'Content-Type: application/json' \
-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
}
]
}'