Product family id
MANAGEMENT API (BETA)
/- List active product families
Get product family
Update product family
Insert product family
List deleted product families
List active product famil...
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/family/{id}
- cURL
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family/{id}'
Response
{ "Id": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "IsActive": true, "ImageKey": "00000000-0000-0000-0000-000000000000", "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family/{id}
- cURL
- JS
- C#
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family/{id}' \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"IsActive": true,
"ImageKey": "00000000-0000-0000-0000-000000000000",
"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/product/family
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family
Response
[ { "Id": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "IsActive": true, "ImageKey": "00000000-0000-0000-0000-000000000000", "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family \
-H 'Content-Type: application/json' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"IsActive": true,
"ImageKey": "00000000-0000-0000-0000-000000000000",
"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/product/family/deleted
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/family/deleted
Response
[ { "Id": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "IsActive": true, "ImageKey": "00000000-0000-0000-0000-000000000000", "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]