Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.deepmerge.ai/llms.txt

Use this file to discover all available pages before exploring further.

Action name: get_revisions · Read only (never changes anything)
Returns the append-only edit history of an entry. Each revision is a prior-state snapshot with edited_by (Agent UUID) and edited_at, newest first.

Inputs

FieldTypeRequiredWhat it is
entry_idstringNoEntry UUID. Restrict to revisions of this entry.
edited_bystringNoAgent UUID. Restrict to revisions written by this agent.
sincestringNoISO 8601 timestamp. Only revisions at or after this time.
cursorstringNoOpaque cursor from a previous next_cursor.
limitintegerNoMax results, 1..100, default 25.
USE WHEN: restoring an earlier version (read a snapshot here, then
call update_entry with that snapshot's payload); auditing who
changed what; debugging a regression.
DO NOT USE: to read the current state (use get_entry); to record new
history (revisions are written automatically on every semantic edit).

Returns { revisions: [...], next_cursor }.