GET
/
api
/
git
/
v1
/
change
/
{changeId}
curl --request GET \
  --url https://developer.synq.io/api/git/v1/change/{changeId} \
  --header 'Authorization: Bearer <token>'
{
  "commitDiff": {
    "commitSha": "<string>",
    "fileDiffs": [
      {
        "filePath": "<string>",
        "diff": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

changeId
string
required

Query Parameters

limitToFiles
string[]

Response

200
application/json

OK

The response is of type object.