action vtex_delete_api_catalog_pvt_skuattachment_sku_attachment_association { label: "Delete SKU Attachment by Attachment Association ID" description: "Deletes the association of an SKU to an Attachment." provider: vtex method: DELETE path: "/api/catalog/pvt/skuattachment/{skuAttachmentAssociationId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } skuAttachmentAssociationId: { type: "integer" } } required: ["Accept", "Content-Type", "skuAttachmentAssociationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }