Get project member list (without pagination)
GET
/user/project-user-listRequest
Query Params
projectId
integer <int64>
required
Project ID
Example:
1
keyword
string
optional
Keyword for search
Example:
xxx
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
head
string
optional
Avatar
orgEmail
string
optional
departmentVOList
array [object {2}]
optional
Department List
deptName
string
optional
Department Name
id
integer <int64>
optional
Department ID
userName
string
optional
Username
userId
integer <int64>
optional
User ID
roleVOList
array [object {3}]
optional
Role List
roleCode
string
optional
Role Code
roleName
string
optional
Role Name
id
integer <int64>
optional
Role ID
Example
{
"code": "0",
"data": [
{
"head": "https://xxx/1.jpg",
"orgEmail": "xxx@xxx.net",
"departmentVOList": [
{
"deptName": "xxx",
"id": 1
}
],
"userName": "xxx",
"userId": 1,
"roleVOList": [
{
"roleCode": "member",
"roleName": "Member",
"id": 1
}
]
}
]
}
Last modified: 6 months ago