cURL
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" }
Retrieve a specific change by its JJ change id
read
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Organization slug
1
Repository name
^[zyxwvutsrqponmlk]{32}$
Change
^[0-9a-f]{40}$
Show child attributes