action vtex_delete_api_catalog_pvt_collection_collection_id { label: "Delete Collection" description: " >⚠️ There are two ways to configure collections, through Legacy CMS Portal or using the Beta Collection module. This endpoint is compatible with [collections configured through the Legacy CMS Portal](https://help.vtex.com/en/tutorial/adding-collections-cms--2YBy6P6X0NFRpkD2ZBxF6L).\n\nDeletes a previously existing Collection." provider: vtex method: DELETE path: "/api/catalog/pvt/collection/{collectionId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } collectionId: { type: "integer" } } required: ["Accept", "Content-Type", "collectionId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }