v1

latestOpenAPI 3.0.32026-07-22115106141.4 KB
Repository Manipulation

Get object history in a ref by its latest path

get/repos/{repo_id}/files/history/{ref_id}/{path}

Query parameters

limitinteger
Example:17

Limit the number or items returned from a listing api

skipinteger
Example:17

Skip a number of items returned from a listing api

Response

List of changes in the history of a versioned file

Example response

{
  "entries": [
    {
      "entry": {
        "path": "hello.cc",
        "blob": {
          "storage_uri": "repo_id/2aae6c35c94fcfb415dbe95f408b9ce91ee846ed"
        }
      },
      "commit": {
        "commit_id": "example_id"
      }
    }
  ]
}