This endpoint returns a list of validated user of the tenant. The returned list will be determined by the permissions/access of the API client.
GET
Request
Url Params
tennatId | int | the id of the tenant |
Authorization
The following authorization header is required. The authorisation header should be set to a 'Bearer Token' type
Token |
Query Params
The end point supports oData filtering. You are able to filter the results of the request by passing in the following query parameter in the request.
$filter |
this example returns only tenants whose name contains 'beta'
Response
The response will return an array of 0 to n JSON objects. Each JSON object in the array contains the following properties:
userAccountId | int | the user account Id of the user |
torusAccountId | string | [internal reference] the torus account Id of the user |
emailAddress | string | the email address of the user |
lineManagerName | string | the display name of the line manager |
tenantId | int | [not in use] the id of the tenant |
id | int | [internal] employee Id of the user |
displayName | string | the display name of user |
isLoginAllowed | bool | indicates login allowed for user if set to true |
isAccountClosed | bool | indicates account closed for user if set to true |
isLockedOut | bool | indicates account locked for user if set to true |
linkAddress | bool | the URL of the user on the administration system |
extraRegisttationDetailsComplete | bool | indicates if the user has completed extra registration. Only valid if the tenant has extra registration enabled |
extraRegisttationDetailsCompleteDate | date | date of extra registration if the user has completed extra registration. Only valid if the tenant has extra registration enabled |
torusNonValidated | bool | is user validated |
ouOfOffice | bool | indicates if the user account has been set to 'Out Of Office' |
Permissions
The API Client requires at least readonly permissions to Tenants to successfully retrieve results (See Admin User Roles for more details). Only tenants that the API client has access to will be returned.
Examples
C# Example
var client = new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Get, "https://{platform API url}/api/admin/tenant/list/get/uservalidatedinfo/{tenantId}?$filter=$top=1"); request.Headers.Add("Authorization", "Bearer {access token}"); var response = await client.SendAsync(request); response.EnsureSuccessStatusCode(); Console.WriteLine(await response.Content.ReadAsStringAsync());
cURL Example
curl --location 'https://{platform API url}/api/admin/tenant/list/get/uservlidatedinfo/{tenantId}?%24top=1' \ --header 'Authorization: Bearer {access token}'