The merge-history command is used to retrieve the merge history of a repository.

JSON Input Data Format
{
    "id": string,
    "branch": string
}
id * Specifies the ID of the repository.
branch * Specifies the name of the branch to be created.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "payload": "commit 8619f187839d980f24cca4aa48f6e2974ed8b4df\nSaved File: myfile.txt\n\ncommit 46adcd0de063b111033fc957a6651c1a03f6cd51\nSaved File: myfile.txt\n\ncommit 00cee5967c45c40d54400081c97aa33d2d00f404\nNew File: myfile.txt\n\ncommit d26da33848ad39e25343ce5b05a3bbcb1bcadd59\nrepository mytest.repo was created"
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}