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/product/file/{id}
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the File
The localized description of the file type for a specific culture
The description of the file type for the default language
The file extension, from the built-in file type for this file type, e.g., "jpg", "gif", "pdf", "mp4" etc.
The MIME type, from the built-in file type for this file type, e.g., "image/jpeg", "application/pdf", etc.
The sort order of the file type, used for displaying file types in choices and lists in the admin interface. And is also provided in API results.
{ "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "TypeId": 0, "TypeExtension": "string", "TypeMimeType": "string", "SortOrder": 0, "IsActive": true, "IsImage": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ { … } ] }
A product file type to update
The localized description of the file type for a specific culture
The description of the file type for the default language
The file extension, from the built-in file type for this file type, e.g., "jpg", "gif", "pdf", "mp4" etc.
The MIME type, from the built-in file type for this file type, e.g., "image/jpeg", "application/pdf", etc.
The sort order of the file type, used for displaying file types in choices and lists in the admin interface. And is also provided in API results.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}' \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"Code": "string",
"TypeId": 0,
"TypeExtension": "string",
"TypeMimeType": "string",
"SortOrder": 0,
"IsActive": true,
"IsImage": 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/product/file/{id}
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}' \
-H 'account-id: 0' \
-H 'application-id: 0'0
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file \
-H 'account-id: 0' \
-H 'application-id: 0'Returns the list of product file types, if any exists
The localized description of the file type for a specific culture
The description of the file type for the default language
The file extension, from the built-in file type for this file type, e.g., "jpg", "gif", "pdf", "mp4" etc.
The MIME type, from the built-in file type for this file type, e.g., "image/jpeg", "application/pdf", etc.
The sort order of the file type, used for displaying file types in choices and lists in the admin interface. And is also provided in API results.
[ { "Id": 0, "Name": "string", "DefaultName": "string", "IsNameInherited": true, "Description": "string", "DefaultDescription": "string", "IsDescriptionInherited": true, "Code": "string", "TypeId": 0, "TypeExtension": "string", "TypeMimeType": "string", "SortOrder": 0, "IsActive": true, "IsImage": true, "Changed": "string", "ChangedBy": "string", "Cultures": [ … ] } ]
A product file type to add
The localized description of the file type for a specific culture
The description of the file type for the default language
The file extension, from the built-in file type for this file type, e.g., "jpg", "gif", "pdf", "mp4" etc.
The MIME type, from the built-in file type for this file type, e.g., "image/jpeg", "application/pdf", etc.
The sort order of the file type, used for displaying file types in choices and lists in the admin interface. And is also provided in API results.
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file \
-H 'Content-Type: application/json' \
-H 'account-id: 0' \
-H 'application-id: 0' \
-d '{
"Id": 0,
"Name": "string",
"DefaultName": "string",
"IsNameInherited": true,
"Description": "string",
"DefaultDescription": "string",
"IsDescriptionInherited": true,
"Code": "string",
"TypeId": 0,
"TypeExtension": "string",
"TypeMimeType": "string",
"SortOrder": 0,
"IsActive": true,
"IsImage": true,
"Changed": "string",
"ChangedBy": "string",
"Cultures": [
{
"CultureCode": "string",
"IsTranslated": true,
"Name": "string",
"IsNameInherited": true,
"Description": "string",
"IsDescriptionInherited": true
}
]
}'0