GET api/2.0/people/simple/filter
Returns a list of users matching the parameters specified in the request.
Name |
Description |
Type |
Example |
employeeStatus
sent in url
|
User status
optional
|
ASC.Core.Users.EmployeeStatus
|
|
groupId
sent in url
|
Group ID
optional
|
guid
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
activationStatus
sent in url
|
Activation status
optional
|
ASC.Core.Users.EmployeeActivationStatus
|
|
employeeType
sent in url
|
User type
optional
|
ASC.Core.Users.EmployeeType
|
|
isAdministrator
sent in url
|
Specifies if the user is administrator or not
optional
|
Bool value
|
true
|
GET api/2.0/people/simple/filter
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
}
]
}
text/xml
<result>
<status>0</status>
<response>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</response>
</result>