diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-10-12 13:32:48 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-10-12 16:47:35 +0200 |
commit | b998479c81512b7c9a2cff28e7aabff3c4be0424 (patch) | |
tree | bb6ad3e585b1096f804dc354eebabb68bf93b9ec /doc | |
parent | 7c07c07d7a2b93ab81964b9cd28736652da1370a (diff) | |
download | gitlab-ce-b998479c81512b7c9a2cff28e7aabff3c4be0424.tar.gz |
API: Version informationapi-version
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/README.md | 1 | ||||
-rw-r--r-- | doc/api/version.md | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/doc/api/README.md b/doc/api/README.md index 9e907689c80..75b098f2eeb 100644 --- a/doc/api/README.md +++ b/doc/api/README.md @@ -46,6 +46,7 @@ following locations: - [Todos](todos.md) - [Users](users.md) - [Validate CI configuration](ci/lint.md) +- [Version](version.md) ### Internal CI API diff --git a/doc/api/version.md b/doc/api/version.md new file mode 100644 index 00000000000..287d17cf97f --- /dev/null +++ b/doc/api/version.md @@ -0,0 +1,23 @@ +# Version API + +>**Note:** This feature was introduced in GitLab 8.13 + +Retrieve version information for this GitLab instance. Responds `200 OK` for +authenticated users. + +``` +GET /version +``` + +```bash +curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/version +``` + +Example response: + +```json +{ + "version": "8.13.0-pre", + "revision": "4e963fe" +} +``` |