Skip to main content
GET
/
{org}
/
{repo}
/
change
/
{change_id}
Get change
curl --request GET \
  --url https://api.mesa.dev/v1/{org}/{repo}/change/{change_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "current_commit_oid": "<string>",
  "message": "<string>",
  "author": {
    "name": "<string>",
    "email": "jsmith@example.com",
    "date": "<string>"
  },
  "committer": {
    "name": "<string>",
    "email": "jsmith@example.com",
    "date": "<string>"
  },
  "parents": [
    "<string>"
  ],
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org
string
required
Minimum string length: 1
repo
string
required
Minimum string length: 1
change_id
string
required
Pattern: ^[zyxwvutsrqponmlk]{32}$

Response

Change

id
string
required
Pattern: ^[zyxwvutsrqponmlk]{32}$
current_commit_oid
string
required
message
string
required
author
object
required
committer
object
required
parents
string[]
required
created_at
string
required
updated_at
string
required