List Project Members
List Project Members
POST/api/2/auto_eval/project/list_members
List the member roles of the project
Request
- application/json
Body
filters
object
search query substring match for member names
search only members with the specified project role
Possible values: [PROJECT_ROLE_UNSPECIFIED
, PROJECT_ROLE_ADMIN
, PROJECT_ROLE_MEMBER
]
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
projectMembers
object[]
required
role
object
required
The auth Role for the project member
Human-readable display name for the role
Possible values: [ROLE_TYPE_UNSPECIFIED
, ROLE_TYPE_USER
, ROLE_TYPE_ORGANIZATION
, ROLE_TYPE_PROJECT
]
roleUsers
object[]
required
User id for the user
The role within the project for this member
Possible values: [PROJECT_ROLE_UNSPECIFIED
, PROJECT_ROLE_ADMIN
, PROJECT_ROLE_MEMBER
]
Total count of project members which can be listed with applicable filters, regardless of page size
{
"projectMembers": [
{
"role": {
"id": 0,
"name": "string",
"displayName": "string",
"roleType": "ROLE_TYPE_UNSPECIFIED",
"roleUsers": [
{
"id": "string",
"name": "string",
"email": "string",
"profileImageUrl": "string"
}
],
"grantedToRoleIds": [
0
]
},
"projectRole": "PROJECT_ROLE_UNSPECIFIED"
}
],
"totalCount": 0
}