readwise_delete_document
Remove a document from Readwise Reader by specifying its unique ID. This tool allows users to manage their reading list by deleting unwanted or outdated documents directly.
Instructions
Delete a document from Readwise Reader
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Document ID to delete |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"id": {
"description": "Document ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}