ApiResponse<Tenant> |
TenantApi.createTenantWithHttpInfo(TenantCreateRequest body) |
Create the Tenant
Similar to createTenant but it also returns the http response headers .
|
ApiResponse<Tenant> |
TenantApi.getTenantByIdWithHttpInfo(String id) |
Finds the Tenant by ID
Similar to getTenantById but it also returns the http response headers .
|
List<Tenant> |
TenantApi.searchTenants(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds Tenants
 Finds Tenants with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName`
|
List<Tenant> |
TenantApi.searchTenants(Map<String,Object> queryParams) |
Finds Tenants
 Finds Tenants with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName`
Note, this is equivalent to the other searchTenants method,
but with the query parameters collected into a single Map parameter.
|
ApiResponse<List<Tenant>> |
TenantApi.searchTenantsWithHttpInfo(Integer p,
Integer c,
List<String> f,
String o,
String s) |
Finds Tenants
Similar to searchTenants but it also returns the http response headers .
|
ApiResponse<List<Tenant>> |
TenantApi.searchTenantsWithHttpInfo(Map<String,Object> queryParams) |
Finds Tenants
 Finds Tenants with pagination params and filters - can order on `id` - can search on `displayName` - can filter on `displayName`
Note, this is equivalent to the other searchTenants that receives the query parameters as a map,
but this one also exposes the Http response headers
|