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

Authorizations

Authorization
string
header
required

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

Path Parameters

org
string
required

Organization slug

Minimum string length: 1
repo
string
required

Repository name

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

Response

Change

id
string
required
Pattern: ^[zyxwvutsrqponmlk]{32}$
current_commit_oid
string
required
Pattern: ^[0-9a-f]{40}$
message
string
required
author
object
required
committer
object
required
parents
string[]
required
created_at
string<date-time>
required
updated_at
string<date-time>
required