Actions17
Entry → Update
AI-generatedOverview
This node operation updates an existing entry in the Wallabag read-it-later service. It allows users to modify various fields of a saved article or URL, such as the title, content, authors, tags, publication date, and visibility settings. This operation is useful for keeping saved entries up-to-date or correcting information after the initial save.
Use Case Examples
- Updating the title and content of a saved article to reflect new information.
- Marking an entry as archived or starred to organize reading lists.
- Changing the language or adding tags to improve searchability and categorization.
Properties
| Name | Meaning |
|---|---|
| Entry ID | The unique identifier of the entry to update, required to specify which entry to modify. |
| Update Fields | A collection of fields that can be updated for the entry, including archive status, authors, content, language, origin URL, preview picture, public visibility, publication date, starred status, tags, and title. |
Output
JSON
json- The updated entry object returned from the Wallabag API after the update operation.
Dependencies
- Wallabag API with authentication credentials
Troubleshooting
- Ensure the Entry ID provided is valid and exists in the Wallabag account; otherwise, the update will fail.
- Verify that the API credentials are correctly configured and have permission to update entries.
- Check that date fields like 'Published At' are in the correct ISO 8601 format to avoid validation errors.
- If updating tags, note that the provided tags will replace existing tags, so include all desired tags in the update.
Links
- Wallabag API Documentation - Update an Entry - Official API documentation describing the update entry endpoint and its parameters.