action vtex_delete_api_catalog_pvt_skuattachment { label: "Dissociate attachments and SKUs" description: "Dissociates attachments and SKUs based on an SKU ID or an attachment ID." provider: vtex method: DELETE path: "/api/catalog/pvt/skuattachment" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } attachmentId: { type: "integer" format: "int32" } skuId: { type: "integer" format: "int32" } } required: ["Accept", "Content-Type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }