readwise_update_document
Update a document's title, author, summary, published date, image URL, location, or category in Readwise Reader using the document ID for precise management and organization.
Instructions
Update a document in Readwise Reader
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | New author for the document | |
category | No | New category for the document | |
id | Yes | Document ID to update | |
image_url | No | New image URL for the document | |
location | No | New location for the document | |
published_date | No | New published date (ISO 8601) | |
summary | No | New summary for the document | |
title | No | New title for the document |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"author": {
"description": "New author for the document",
"type": "string"
},
"category": {
"description": "New category for the document",
"enum": [
"article",
"book",
"tweet",
"pdf",
"email",
"youtube",
"podcast"
],
"type": "string"
},
"id": {
"description": "Document ID to update",
"type": "string"
},
"image_url": {
"description": "New image URL for the document",
"type": "string"
},
"location": {
"description": "New location for the document",
"enum": [
"new",
"later",
"shortlist",
"archive",
"feed"
],
"type": "string"
},
"published_date": {
"description": "New published date (ISO 8601)",
"type": "string"
},
"summary": {
"description": "New summary for the document",
"type": "string"
},
"title": {
"description": "New title for the document",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}