put https://{accountName}.{environment}.com.br/api/catalog/pvt/skuservicetype/
Updates an existing SKU Service Type
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
Name | string | SKU Service Type Name. Maximum of 100 characters |
IsActive | boolean | If the SKU Service Type is active or not |
ShowOnProductFront | boolean | Deprecated |
ShowOnCartFront | boolean | If the SKU Service Type is displayed on the cart screen |
ShowOnAttachmentFront | boolean | If the SKU Service Type has an attachment |
ShowOnFileUpload | boolean | If the SKU Service Type can be associated with an attachment or not |
IsGiftCard | boolean | If the SKU Service Type is displayed as a Gift Card |
IsRequired | boolean | If the SKU Service type mandatory |
Request body example:
{
"Name": "Mudando nome teste",
"IsActive": false,
"ShowOnProductFront": false,
"ShowOnCartFront": false,
"ShowOnAttachmentFront": false,
"ShowOnFileUpload": false,
"IsGiftCard": false,
"IsRequired": false
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | SKU Service Type ID |
Name | string | SKU Service Type Name |
IsActive | boolean | If the SKU Service Type is active or not |
ShowOnProductFront | boolean | Deprecated |
ShowOnCartFront | boolean | If the SKU Service Type is displayed on the cart screen |
ShowOnAttachmentFront | boolean | If the SKU Service Type has an attachment |
ShowOnFileUpload | boolean | If the SKU Service Type can be associated with an attachment or not |
IsGiftCard | boolean | If the SKU Service Type is displayed as a Gift Card |
IsRequired | boolean | If the SKU Service type mandatory |
Response body example:
{
"Id": 1,
"Name": "Mudando nome teste",
"IsActive": false,
"ShowOnProductFront": false,
"ShowOnCartFront": false,
"ShowOnAttachmentFront": false,
"ShowOnFileUpload": false,
"IsGiftCard": false,
"IsRequired": false
}