delete_collection
Move a collection to the organisation's trash (soft-delete).
Move a collection to the organisation's trash (soft-delete).
Destructive · Writes data · Idempotent · Calls external systems. This tool can modify or delete data. Review the arguments before letting an agent call it.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
acknowledge | boolean | Yes | Must be true — confirms the caller accepts moving this collection to trash (soft-delete, recoverable until admin empties trash) |
operator | string | Yes | Operator slug |
uid | string | Yes | Collection UID to delete |
Example arguments
Illustrative arguments an agent supplies when calling this tool:
{
"operator": "string",
"uid": "string",
"acknowledge": false
}
Description
The collection is recoverable until an admin empties the trash; there is no direct hard-delete. Refuses unless acknowledge=true. Recommended flow: list_collection_items (review the contents) → delete_collection with acknowledge=true.
Related
What's next?
Last updated on