2

I found Gitlab API from here GetProjectMembers

It says we can use query string in API.

GET /projects/:id/members/all
Attribute   Type    Required    Description
query      string         no    A query string to search for members

So my question is how to query it like 'access_level=50' or some how.

I am a really fresh man for this and thank you in advance.

B.Kingsun
  • 350
  • 3
  • 11
  • AFAIK (though I'm still digging), the (fuzzy?) query filter for `.../members/[all]` applies only to the `name`, `username` and `email` attributes. – sphakka Aug 03 '23 at 09:47

1 Answers1

0

I found sth like this

/project_members?sort=access_level_desc

and this is a Compromise method

B.Kingsun
  • 350
  • 3
  • 11