Configuration Service

Get Config History

History Api retrieves id, comment and timestamp of all the revisons of configuration files.

get/history/{path}

Path parameters

pathstring required

Repository file path.

Query parameters

maxResultsnumber

Maximum number of results to be fetched.

fromstring

Retrieves active revisions history from provided timestamp onwards.

tostring

Retrieves active revisions history till the provided timestamp.

Response

OK

commentstring

Commit message.

timestring

File updation timestamp.

Example response

{
  "id": {
    "id": "1"
  },
  "comment": "This is sample commit message.",
  "time": "2017-05-06T07:10:38.385Z"
}

Changes