v1

latestOpenAPI 3.0.32026-07-22115106141.4 KB
Repository Commit Manipulation

Get a list of commits

get/repos/{repo_id}/commits

Query parameters

ref_idsstring[]

If specified, filters commit list to start with specified ref IDs (branches, workspaces etc.), otherwise return commits accessible from all branches.

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

querystring
Example:foo

A string query to filter against in a listing api

Response

Success

object'Commit' required

Example response

{
  "items": [
    {
      "commit_id": "example_id"
    }
  ]
}