Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/users.md')
-rw-r--r--doc/api/users.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/api/users.md b/doc/api/users.md
index 505468945cb..76075e8b7be 100644
--- a/doc/api/users.md
+++ b/doc/api/users.md
@@ -314,7 +314,8 @@ Example Responses:
"current_sign_in_ip": "196.165.1.102",
"last_sign_in_ip": "172.127.2.22",
"plan": "gold",
- "trial": true
+ "trial": true,
+ "sign_in_count": 1337
}
```
@@ -1053,6 +1054,10 @@ curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://git
Get a list of currently authenticated user's emails.
+NOTE: **Note:**
+Due to [a bug](https://gitlab.com/gitlab-org/gitlab/-/issues/25077) this endpoint currently
+does not return the primary email address.
+
```plaintext
GET /user/emails
```
@@ -1078,6 +1083,10 @@ Parameters:
Get a list of a specified user's emails. Available only for admin
+NOTE: **Note:**
+Due to [a bug](https://gitlab.com/gitlab-org/gitlab/-/issues/25077) this endpoint currently
+does not return the primary email address.
+
```plaintext
GET /users/:id/emails
```
@@ -1284,6 +1293,7 @@ Example response:
[
{
"active" : true,
+ "user_id" : 2,
"scopes" : [
"api"
],
@@ -1296,6 +1306,7 @@ Example response:
},
{
"active" : false,
+ "user_id" : 2,
"scopes" : [
"read_user"
],
@@ -1335,6 +1346,7 @@ Example response:
```json
{
"active" : true,
+ "user_id" : 2,
"scopes" : [
"api"
],
@@ -1378,6 +1390,7 @@ Example response:
{
"id" : 2,
"revoked" : false,
+ "user_id" : 2,
"scopes" : [
"api"
],