Product flag id
MANAGEMENT API (BETA)
//Insert product file
Norce Management API (v1)
Download OpenAPI description
Languages
Servers
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
- JS
- C#
curl -i -X GET \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}'
Response
{ "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", "IsSharedType": true, "Cultures": [ { … } ] }
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}
- cURL
- JS
- C#
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' \
-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
}
]
}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}
- cURL
- JS
- C#
curl -i -X DELETE \
'https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file/{id}'
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file
- cURL
- JS
- C#
curl -i -X GET \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file
Response
[ { "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", "IsSharedType": true, "Cultures": [ … ] } ]
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.playground.norce.tech/commerce/management/1.0/api/product/file \
-H 'Content-Type: application/json' \
-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
}
]
}'