action getpostman_delete_collection { label: "Delete Collection" description: "This endpoint allows you to delete an existing collection.\n\nOn successful deletion of the collection, the response returns the `id` and `uid`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: DELETE path: "/collections/{collection_uid}" encoding: json output: { type: "object" properties: { collection: { type: "object" properties: { id: { type: "string" } uid: { type: "string" } } } } } }