deleteBookmark
Remove a bookmark from Raindrop.io by specifying its ID; optionally delete permanently to bypass the trash.
Instructions
Delete a bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Bookmark ID | |
permanent | No | Permanently delete (skip trash) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Bookmark ID",
"type": "number"
},
"permanent": {
"description": "Permanently delete (skip trash)",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}