This endpoint returns a list of tenants on a platform. The returned tenants will be determined by the permissions/access of the API client.
GET
Request
Url Params
countUsers | bool |
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:
id | int | the id of the tenant |
name | string | the name of the tenant |
subDomainName | string | the sub domain name for the tenant |
inDemoMode | bool | is the tenant in demo mode |
theme | string | the theme that the tenant is using |
userCount | int | the number of users the tenant has. This will be 0 if the countUsers url parameter is omitted or is set to false |
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/true?$filter=substringof(tolower('beta'),tolower(Name))"); 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/true?%24filter=substringof(tolower(%27beta%27)%2Ctolower(Name))' \ --header 'Authorization: Bearer {access token}'