deleteCollection
Remove a specific collection from Raindrop.io by providing its unique ID. This tool facilitates the management of your bookmark collections, ensuring a clean and organized workspace.
Instructions
Delete a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Collection ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Collection ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}