action shutterstock_delete_collection { label: "Delete catalog collections" description: "This endpoint deletes a catalog collection. It does not remove the assets from the user's account's catalog." provider: shutterstock method: DELETE path: "/v2/catalog/collections/{collection_id}" encoding: json input: { type: "object" properties: { collection_id: { type: "string" } } required: ["collection_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }