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://{slug}.api-se.playground.norce.tech/commerce/
https://{slug}.api-se.stage.norce.tech/commerce/
https://{slug}.api-se.norce.tech/commerce/
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype
https://customer-slug.api-se.stage.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype
https://customer-slug.api-se.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of client price list types, if any exists
The localized and client specific name of the price list type.
The localized and client specific description of the price list type.
The default description of the price list type.
Indicates whether the description is inherited from the default description.
The priority of the price list type. Client specific. Used to determine the precedence of price list types when multiple types apply.
The collection of culture-specific translations for this price list type.
[ { "Id": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "Priority": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
The client price list type model
The localized and client specific name of the price list type.
The localized and client specific description of the price list type.
The default description of the price list type.
Indicates whether the description is inherited from the default description.
The priority of the price list type. Client specific. Used to determine the precedence of price list types when multiple types apply.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}
https://customer-slug.api-se.stage.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}
https://customer-slug.api-se.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Code": "string",
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"SortOrder": 0,
"Priority": 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/pricing/clientpricelisttype/{id}
https://customer-slug.api-se.stage.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}
https://customer-slug.api-se.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the client price list type
The localized and client specific name of the price list type.
The localized and client specific description of the price list type.
The default description of the price list type.
Indicates whether the description is inherited from the default description.
The priority of the price list type. Client specific. Used to determine the precedence of price list types when multiple types apply.
{ "Id": 0, "Code": "string", "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "SortOrder": 0, "Priority": 0, "IsActive": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
A list of client price list types
The localized and client specific name of the price list type.
The localized and client specific description of the price list type.
The default description of the price list type.
Indicates whether the description is inherited from the default description.
The priority of the price list type. Client specific. Used to determine the precedence of price list types when multiple types apply.
The collection of culture-specific translations for this price list type.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/list
https://customer-slug.api-se.stage.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/list
https://customer-slug.api-se.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/list
curl -i -X PUT \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/pricing/clientpricelisttype/list \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '[
{
"Id": 0,
"Code": "string",
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"SortOrder": 0,
"Priority": 0,
"IsActive": true,
"Changed": "string",
"ChangedBy": "string",
"Cultures": [
{
"CultureCode": "string",
"IsTranslated": true,
"Name": "string",
"IsNameInherited": true,
"Description": "string",
"IsDescriptionInherited": true
}
]
}
]'