GET api/2.0/people/status/{status} This function requires authentication

Description

Returns a list of profiles filtered by user status.

Parameters
Name Description Type Example
status
sent in url
User status Active, Terminated, LeaveOfAbsence, Default, All Active
Example
GET api/2.0/people/status/%22Active%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of users with the detailed information

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "FirstName": "some text",
      "LastName": "some text",
      "UserName": "some text",
      "Email": "some text",
      "Sex": "some text",
      "Status": "Active",
      "ActivationStatus": "NotActivated",
      "Department": "some text",
      "Location": "some text",
      "Notes": "some text",
      "AvatarMax": "some text",
      "AvatarMedium": "some text",
      "Avatar": "some text",
      "IsAdmin": true,
      "IsLDAP": true,
      "ListAdminModules": [
        "some text"
      ],
      "IsOwner": true,
      "IsVisitor": true,
      "IsCollaborator": true,
      "CultureName": "some text",
      "MobilePhone": "some text",
      "IsSSO": true,
      "QuotaLimit": 1234
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <FirstName>some text</FirstName>
    <LastName>some text</LastName>
    <UserName>some text</UserName>
    <Email>some text</Email>
    <Sex>some text</Sex>
    <Status>Active</Status>
    <ActivationStatus>NotActivated</ActivationStatus>
    <Department>some text</Department>
    <Location>some text</Location>
    <Notes>some text</Notes>
    <AvatarMax>some text</AvatarMax>
    <AvatarMedium>some text</AvatarMedium>
    <Avatar>some text</Avatar>
    <IsAdmin>True</IsAdmin>
    <IsLDAP>True</IsLDAP>
    <ListAdminModules>[
  "some text"
]</ListAdminModules>
    <IsOwner>True</IsOwner>
    <IsVisitor>True</IsVisitor>
    <IsCollaborator>True</IsCollaborator>
    <CultureName>some text</CultureName>
    <MobilePhone>some text</MobilePhone>
    <IsSSO>True</IsSSO>
    <QuotaLimit>1234</QuotaLimit>
  </response>
</result>