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/customer/infotype/{groupId}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of active customer, company or store info types for the specified group, if any exists
The group identifier that categorizes the info type, see CustomerInfoTypeGroups enum
The description of the info type in a specific language.
The default description of the info type for the default language.
The culture-specific information for the info type
[ { "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": [ … ] } ]
Model to add
The group identifier that categorizes the info type, see CustomerInfoTypeGroups enum
The description of the info type in a specific language.
The default description of the info type for the default language.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}
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' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-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
}
]
}'0
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/deleted
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/deleted' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of deleted customer, company or store info types for the specified group, if any exists
The group identifier that categorizes the info type, see CustomerInfoTypeGroups enum
The description of the info type in a specific language.
The default description of the info type for the default language.
The culture-specific information for the info type
[ { "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": [ … ] } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/item/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/item/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'{ "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": [ { … } ] }
Model to update
The group identifier that categorizes the info type, see CustomerInfoTypeGroups enum
The description of the info type in a specific language.
The default description of the info type for the default language.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/customer/infotype/{groupId}/{id}
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' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-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
}
]
}'0