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/parametric/{parametricId}/list
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/parametric/{parametricId}/list' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of parametric list values, if any exists
The display value for the parametric list item in a specific language.
The display value for the parametric list item in the default language.
If true, the specific language doesn't have its own value and instead inherits from the default value.
A longer description for the parametric list item in a specific language. No size limit.
A longer description for the parametric list item in the default language. No size limit.
If true, the description is inherited from the default language rather than being its own text.
Unique code identifier for the parametric list item.
Deprecated, URL path to an associated image for the parametric list item.
False if the parametric list item is soft deleted, removes it from selection lists but easily reactivatable.
The date and time when the parametric list item was last changed.
The name of the user who last changed the parametric list item, null if never changed.
List of all culture-specific text fields for the parametric list item.
[ { "Id": 20, "ParametricId": 8, "Value": "Anthracite grey/Green", "DefaultValue": "Anthracite grey/Green", "IsValueInherited": false, "Description": "", "DefaultDescription": "", "IsDescriptionInherited": false, "Code": "antracitgra-green", "ImageKey": null, "ImageUrl": "", "IsActive": true, "Changed": "03/05/2024 13:01", "ChangedBy": null, "Cultures": [ … ] } ]
A complete list of parametric list values to set, existing values will be replaced. New values are allowed.
The display value for the parametric list item in a specific language.
The display value for the parametric list item in the default language.
If true, the specific language doesn't have its own value and instead inherits from the default value.
A longer description for the parametric list item in a specific language. No size limit.
A longer description for the parametric list item in the default language. No size limit.
If true, the description is inherited from the default language rather than being its own text.
Unique code identifier for the parametric list item.
Deprecated, URL path to an associated image for the parametric list item.
False if the parametric list item is soft deleted, removes it from selection lists but easily reactivatable.
The date and time when the parametric list item was last changed.
The name of the user who last changed the parametric list item, null if never changed.
List of all culture-specific text fields for the parametric list item.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/parametric/{parametricId}/list
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/parametric/{parametricId}/list' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '[
{
"Id": 20,
"ParametricId": 8,
"Value": "Anthracite grey/Green",
"DefaultValue": "Anthracite grey/Green",
"IsValueInherited": false,
"Description": "",
"DefaultDescription": "",
"IsDescriptionInherited": false,
"Code": "antracitgra-green",
"ImageKey": null,
"ImageUrl": "",
"IsActive": true,
"Changed": "03/05/2024 13:01",
"ChangedBy": null,
"Cultures": [
{
"CultureCode": "en-GB",
"Value": "Anthracite grey/Green",
"IsValueInherited": false,
"Description": "",
"IsDescriptionInherited": false,
"IsTranslated": true
},
{
"CultureCode": "sv-SE",
"Value": "Antracitgrå/Grön",
"IsValueInherited": false,
"Description": null,
"IsDescriptionInherited": true,
"IsTranslated": true
}
]
}
]'