List Memory Revision changes

POST
/v1/memory/changes

Read compact entry changes without expanding entry bodies.

Authorization

BearerAuth
AuthorizationBearer <token>

Static bearer token used when local Server authentication is enabled.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/memory/changes" \  -H "Content-Type: application/json" \  -d '{    "scope_id": "string"  }'
{  "memory": {    "family": "string",    "artifact_id": "string",    "revision": 1  },  "revisions": [    {      "memory_ref": {        "family": "string",        "artifact_id": "string",        "revision": 1      },      "changes": [        {          "op": "add",          "entry_id": "string",          "from_entry_version_id": "string",          "to_entry_version_id": "string",          "reason": "string"        }      ]    }  ]}