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/members.md')
-rw-r--r--doc/api/members.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/api/members.md b/doc/api/members.md
index adfe2df8f30..2a70e35b287 100644
--- a/doc/api/members.md
+++ b/doc/api/members.md
@@ -136,7 +136,7 @@ Example response:
"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
"web_url": "http://192.168.1.8:3000/root",
"expires_at": "2012-10-22T14:13:35Z",
- "access_level": 30
+ "access_level": 30,
"email": "john@example.com",
"group_saml_identity": {
"extern_uid":"ABC-1234567890",
@@ -288,7 +288,9 @@ Example response:
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
"web_url": "http://192.168.1.8:3000/root",
- "last_activity_on": "2021-01-27"
+ "last_activity_on": "2021-01-27",
+ "membership_type": "group_member",
+ "removable": true
},
{
"id": 2,
@@ -298,7 +300,9 @@ Example response:
"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
"web_url": "http://192.168.1.8:3000/root",
"email": "john@example.com",
- "last_activity_on": "2021-01-25"
+ "last_activity_on": "2021-01-25",
+ "membership_type": "group_member",
+ "removable": true
},
{
"id": 3,
@@ -307,7 +311,9 @@ Example response:
"state": "active",
"avatar_url": "https://www.gravatar.com/avatar/c2525a7f58ae3776070e44c106c48e15?s=80&d=identicon",
"web_url": "http://192.168.1.8:3000/root",
- "last_activity_on": "2021-01-20"
+ "last_activity_on": "2021-01-20",
+ "membership_type": "group_invite",
+ "removable": false
}
]
```