action vtex_delete_api_catalog_pvt_skuservicevalue_sku_service_value_id { label: "Delete SKU Service Value" description: "Deletes an existing SKU Service Value." provider: vtex method: DELETE path: "/api/catalog/pvt/skuservicevalue/{skuServiceValueId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuServiceValueId: { type: "integer" } } required: ["Accept", "Content-Type", "skuServiceValueId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }