Get Organization Users (with pagination)
GET
/org/all-member-listRequest
Query Params
key
string
optional
Keyword for search
Example:
xxx
pageNumber
integer <int32>
optional
Page Number
Example:
1
pageSize
integer <int32>
optional
Page Size
Example:
10
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
phoneNumber
string
optional
Phone Number, Need Base64 Conversion And Decryption Using Login Secret + AES/ECB/PKCS5Padding
userName
string
optional
User Name
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": {
"total": 1,
"list": [
{
"head": "https://xxx/1.jpg",
"orgEmail": "xxx@xxx.net",
"phoneNumber": "xxx",
"userName": "xxx",
"userId": 1,
"roleVOList": [
{
"roleCode": "member",
"roleName": "Member",
"id": 1
}
]
}
]
}
}
Last modified: 6 months ago