put https://{accountName}.{environment}.com.br/api/catalog/pvt/skuservicevalue/
Updates an existing SKU Service Value.
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
SkuServiceTypeId | integer | SKU Service Type ID |
Name | string | SKU Service Value name. Maximum of 100 characters |
Value | float | SKU Service Value value |
Cost | float | SKU Service Value cost |
Request body example:
{
"SkuServiceTypeId": 527,
"Name": "Nome teste ServiceValue",
"Value": 10.4,
"Cost": 10.4
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | SKU Service Value ID |
SkuServiceTypeId | integer | SKU Service Type ID |
Name | string | SKU Service Value Name |
Value | float | SKU Service Value value |
Cost | float | SKU Service Value cost |
Response body example:
{
"Id": 1,
"SkuServiceTypeId": 1,
"Name": "Nome teste ServiceValue",
"Value": 10.4,
"Cost": 10.4
}