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>"
}
]
}
}
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>"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object
.