action vtex_delete_api_catalog_pvt_skuservice_sku_service_id { label: "Dissociate SKU Service" description: "Dissociates an SKU Service from an SKU." provider: vtex method: DELETE path: "/api/catalog/pvt/skuservice/{skuServiceId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuServiceId: { type: "integer" } } required: ["Accept", "Content-Type", "skuServiceId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }