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