diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-02-05 10:11:44 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-02-05 10:11:44 +0000 |
commit | 9afcacb3a4f50d45d19b7222edbe0902daa35bb4 (patch) | |
tree | 3734985a8e3c03525f29233145c522f86c046c67 | |
parent | 6d18f748f08b0d6b6e534edada328ea3df7c09ca (diff) | |
parent | bef01c48bd3702e996c55484ed777db095ce480a (diff) | |
download | gitlab-ce-9afcacb3a4f50d45d19b7222edbe0902daa35bb4.tar.gz |
Merge branch 'doc_refactor_session_api' into 'master'
Refactor session API documentation
See merge request !2473
-rw-r--r-- | doc/api/session.md | 42 |
1 files changed, 25 insertions, 17 deletions
diff --git a/doc/api/session.md b/doc/api/session.md index 47c1c8a7a49..71e93d0bb0a 100644 --- a/doc/api/session.md +++ b/doc/api/session.md @@ -1,39 +1,47 @@ # Session -Login to get private token +You can login with both GitLab and LDAP credentials in order to obtain the +private token. ``` POST /session ``` -Parameters: +| Attribute | Type | Required | Description | +| ---------- | ------- | -------- | -------- | +| `login` | string | yes | The username of the user| +| `email` | string | yes if login is not provided | The email of the user | +| `password` | string | yes | The password of the user | -- `login` (required) - The login of user -- `email` (required if login missing) - The email of user -- `password` (required) - Valid password - -**You can login with both GitLab and LDAP credentials now** +```bash +curl -X POST "https://gitlab.example.com/api/v3/session?login=john_smith&password=strongpassw0rd" +``` +Example response: ```json { - "id": 1, - "username": "john_smith", - "email": "john@example.com", "name": "John Smith", - "private_token": "dd34asd13as", - "blocked": false, - "created_at": "2012-05-23T08:00:58Z", + "username": "john_smith", + "id": 32, + "state": "active", + "avatar_url": null, + "created_at": "2015-01-29T21:07:19.440Z", + "is_admin": true, "bio": null, "skype": "", "linkedin": "", "twitter": "", "website_url": "", - "dark_scheme": false, + "email": "john@example.com", "theme_id": 1, - "is_admin": false, + "color_scheme_id": 1, + "projects_limit": 10, + "current_sign_in_at": "2015-07-07T07:10:58.392Z", + "identities": [], "can_create_group": true, - "can_create_team": true, - "can_create_project": true + "can_create_project": true, + "two_factor_enabled": false, + "private_token": "9koXpg98eAheJpvBs5tK" } ``` |