Skip to main content
GET
/
api
/
v2
/
revision
/
get
Get Revision
curl --request GET \
  --url https://app.octavehq.com/api/v2/revision/get \
  --header 'api_key: <api-key>'
{
  "data": {
    "revisionOId": "<string>",
    "summary": "<string>",
    "entityOId": "<string>",
    "entityName": "<string>",
    "createdAt": "<string>",
    "authorName": "<string>",
    "newEntity": {},
    "oldEntity": {},
    "diff": {
      "added": {},
      "removed": {},
      "changed": {}
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.octavehq.com/llms.txt

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

Authorizations

api_key
string
header
required

Query Parameters

revisionOId
string
required

The oId of the revision to fetch (ev_* prefix). Use listRevisions to discover revision oIds.

diffOnly
boolean | null
default:false

If true, return only the field-level diff (added / removed / changed) instead of the full before-and-after entity snapshots. Defaults to false.

Response

200 - application/json

The requested revision detail.

data
object
required