Group id: Customer = 1, Store = 4, Company = 6
curl -i -X GET \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}'
[ { "Id": 0, "GroupId": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
curl -i -X POST \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}' \ -H 'Content-Type: application/json' \ -d '{ "Id": 0, "GroupId": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ { "CultureCode": "string", "IsTranslated": true, "Name": "string", "IsNameInherited": true, "Description": "string", "IsDescriptionInherited": true } ] }'
curl -i -X GET \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/deleted'
[ { "Id": 0, "GroupId": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
curl -i -X GET \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/item/{id}'
[ { "Id": 0, "GroupId": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
curl -i -X PUT \ 'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/{id}' \ -H 'Content-Type: application/json' \ -d '{ "Id": 0, "GroupId": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ { "CultureCode": "string", "IsTranslated": true, "Name": "string", "IsNameInherited": true, "Description": "string", "IsDescriptionInherited": true } ] }'