action vtex_delete_api_catalog_pvt_attachment_attachmentid { label: "Delete attachment" description: "Deletes a previously existing SKU attachment." provider: vtex method: DELETE path: "/api/catalog/pvt/attachment/{attachmentid}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } attachmentid: { type: "string" } } required: ["Accept", "Content-Type", "attachmentid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }