deleteReminder
Remove a reminder from a bookmark in Raindrop.io by specifying the bookmark ID. Simplifies managing bookmark alerts efficiently.
Instructions
Delete a reminder from a bookmark
Input Schema
Name | Required | Description | Default |
---|---|---|---|
raindropId | Yes | Bookmark ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"raindropId": {
"description": "Bookmark ID",
"type": "number"
}
},
"required": [
"raindropId"
],
"type": "object"
}