v50

latestOpenAPI 3.0.0raw.githubusercontent.com2026-05-29208421.4 MB
SKU service

Update SKU service

Updates an SKU service.

Permissions

Any user or API key must have at least one of the appropriate License Manager resources to be able to successfully run this request. Otherwise they will receive a status code 403 error. These are the applicable resources for this endpoint:

ProductCategoryResource
CatalogCommercialSKU Services

There are no applicable predefined roles for this resource list. You must create a custom role and add at least one of the resources above in order to use this endpoint. To learn more about machine authentication at VTEX, see Authentication overview.

❗ To prevent integrations from having excessive permissions, consider the best practices for managing API keys when assigning License Manager roles to integrations.

put/api/catalog/pvt/skuservice/{skuServiceId}

Path parameters

skuServiceIdinteger required
Example:5

SKU service unique identifier.

Headers

Content-Typestring required

Type of the content being sent.

Acceptstring required

HTTP Client Negotiation Accept Header. Indicates the types of responses the client can understand.

Request body

SkuServiceTypeIdinteger required

SKU service type ID.

SkuServiceValueIdinteger required

SKU service value ID.

SkuIdinteger required

SKU ID.

Namestring required

SKU service name. Maximum of 50 characters.

Textstring required

Internal description for the SKU service. Maximum of 100 characters.

IsActiveboolean required

Defines if the SKU service is active or not.

Example request

{
  "SkuServiceTypeId": 2,
  "SkuServiceValueId": 1,
  "SkuId": 1,
  "Name": "Test name",
  "Text": "Text",
  "IsActive": true
}

Response

OK

Idinteger

SKU service ID.

SkuServiceTypeIdinteger

SKU service type ID.

SkuServiceValueIdinteger

SKU service value ID.

SkuIdinteger

SKU ID.

Namestring

SKU service name. Maximum of 50 characters.

Textstring

Internal description of the SKU service. Maximum of 100 characters.

IsActiveboolean

Defines if the SKU service is active or not.