GET /v2/users/:user_id/gitlab_users
Return all the gitlab users of the given User
live_help Notes
assignment
This action requires one of theses roles:
Advanced tutor
chrome_reader_mode
This resource is paginated by 30 items
settings Params
| Param name | Description |
|---|---|
| user_id |
required
. Must be String
The user id or slug |
| sort |
optional
. Must be one of: id, user_id, public_key, created_at, updated_at, name, fingerprint.
The sort field. Sorted by id asc by default. MoreExample:To sort on gitlab users on the fields name on a descending order and fingerprint on a ascending order: ...&sort=-name,fingerprint |
| filter |
optional
. Must be one of: id, user_id, public_key, created_at, updated_at, name, fingerprint.
Filtering on one or more fields MoreExample:
To filter on gitlab users with the
...&filter[id]=a_value,another_value Filterable fields:
|
| range |
optional
. Must be one of: id, user_id, public_key, created_at, updated_at, name, fingerprint.
Select on a particular range MoreExample:
To range on gitlab users with the
...&range[fingerprint]=min_value,max_value Rangeable fields:
|
| page |
optional
. Must be a Hash
The pagination params, as a hash |
| page[number] |
optional
. Must be Fixnum
The current page |
| page[size] |
optional
. Must be Fixnum
The number of items per page, defaults to 30, maximum 100 |