Retrieve all users (simplified model)
GET {{baseUrl}}/.api/api.svc/apisync/view_members?maxcount=3&startindex=1
Through this endpoint, you can view all the existing members in your digital workplace, with their basic profile information such as their ID, email, name, and preferred languages.
Request Params
| Key | Datatype | Required | Description |
| maxcount
| number | | Integer
The number of elements displayed on each page. By default 10 elements will be displayed per page on the digital workplace. The limit of this endpoint is 1000 users or less. |
| startindex
| number | | Integer
The index to start viewing existing members from, beginning with 1. |
HEADERS
| Key | Datatype | Required | Description |
| Accept
| string | | The type of response data to request. By default this endpoint will respond with XML.
The options are:
- application/json
- application/xml |
RESPONSES
status: OK
"{\n \"minRequestPeriod\": 0,\n \"requestSupportCode\": 637792499716238353,\n \"dictionary\": null,\n \"response\": {\n \"__type\": \"IglooList:http://schemas.iglooplatform.com/Igloo.Old.Common\",\n \"startIndex\": 0,\n \"count\": 3,\n \"totalCount\": \"8\",\n \"items\": [\n {\n \"__type\": \"Model.SyncUser:http://schemas.iglooplatform.com/Igloo.Old.Common\",\n \"id\": \"{{$randomUUID}}\",\n \"href\": \"\",\n \"navType\": 0,\n \"Email\": \"{{$randomFirstName}}@{{$randomDomainName}}\",\n \"IsAdmin\": {{$randomBoolean}},\n \"IsDelegated\": {{$randomBoolean}},\n \"Name\": {\n \"firstName\": \"{{$randomFirstName}}\",\n \"lastName\": \"{{$randomLastName}}\",\n \"fullName\": \"{{$randomFullName}}\",\n \"initials\": \"{{$randomNameSuffix}}\"\n },\n \"PreferredLanguage\": 1\n },\n {\n \"__type\": \"Model.SyncUser:http://schemas.iglooplatform.com/Igloo.Old.Common\",\n \"id\": \"{{$randomUUID}}\",\n \"href\": \"\",\n \"navType\": 0,\n \"Email\": \"{{$randomFirstName}}@{{$randomDomainName}}\",\n \"IsAdmin\": {{$randomBoolean}},\n \"IsDelegated\": {{$randomBoolean}},\n \"Name\": {\n \"firstName\": \"{{$randomFirstName}}\",\n \"lastName\": \"{{$randomLastName}}\",\n \"fullName\": \"{{$randomFullName}}\",\n \"initials\": \"{{$randomNameSuffix}}\"\n },\n \"PreferredLanguage\": 1\n },\n {\n \"__type\": \"Model.SyncUser:http://schemas.iglooplatform.com/Igloo.Old.Common\",\n \"id\": \"{{$randomUUID}}\",\n \"href\": \"\",\n \"navType\": 0,\n \"Email\": \"{{$randomFirstName}}@{{$randomDomainName}}\",\n \"IsAdmin\": {{$randomBoolean}},\n \"IsDelegated\": {{$randomBoolean}},\n \"Name\": {\n \"firstName\": \"{{$randomFirstName}}\",\n \"lastName\": \"{{$randomLastName}}\",\n \"fullName\": \"{{$randomFullName}}\",\n \"initials\": \"{{$randomNameSuffix}}\"\n },\n \"PreferredLanguage\": 1\n }\n ]\n }\n}"