v1

latestOpenAPI 3.0.02026-07-1717466209.0 KB
Projects

Get project metadata change history

Paginated audit log of metadata changes for a project (study metadata saves and JSON patch operations). Each entry may include a v1 change record with version, scope, summary, and patch (list of path-level add/remove/replace operations with old/new values).

get/editor/history/{id}

Path parameters

idstring required

Project ID or IDNO

Query parameters

limitinteger

Page size (maximum 100)

offsetinteger

Number of entries to skip

Response

successful operation

statusstring
limitinteger
offsetinteger
totalinteger

Total matching entries

foundinteger

Number of entries returned in this page

Example response

{
  "status": "success",
  "history": [
    {
      "obj_type": "project",
      "action_type": "update",
      "metadata": {
        "version": 1,
        "patch": [
          {
            "path": "/series_description/ref_country/1"
          }
        ]
      }
    }
  ],
  "limit": 15
}