action vtex_delete_api_catalog_pvt_skuservicetypeattachment { label: "Dissociate Attachment by Attachment ID or SKU Service Type ID" description: "Dissociates an Attachment by its Attachment ID or SKU Service Type ID from an SKU Service Type." provider: vtex method: DELETE path: "/api/catalog/pvt/skuservicetypeattachment" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } attachmentId: { type: "integer" } skuServiceTypeId: { type: "integer" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }