post https://{accountName}.{environment}.com.br/api/catalog/pvt/skuservice
Associates an SKU Service to an SKU
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
SkuServiceTypeId | integer | SKU Service Type ID |
SkuServiceValueId | integer | SKU Service Value ID |
SkuId | integer | SKU ID |
Name | string | SKU Service Name. Maximum of 50 characters |
Text | string | Internal description for the SKU Service. Maximum of 100 characters |
IsActive | boolean | If the SKU Service is active or not |
Request body example:
{
"SkuServiceTypeId": 2,
"SkuServiceValueId": 1,
"SkuId": 1,
"Name": "Test name",
"Text": "Test text",
"IsActive": true
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | SKU Service ID |
SkuServiceTypeId | integer | SKU Service Type ID |
SkuServiceValueId | integer | SKU Service Value ID |
SkuId | integer | SKU ID |
Name | string | SKU Service Name |
Text | string | Internal description for the SKU Service |
IsActive | boolean | If the SKU Service is active or not |
Response body example:
{
"Id": 2,
"SkuServiceTypeId": 1,
"SkuServiceValueId": 1,
"SkuId": 7,
"Name": "Test name",
"Text": "Test text",
"IsActive": true
}