getLdapGroups method

Future<List<MmLDAPGroupsPaged>?> getLdapGroups({
  1. String? q,
  2. int? page,
  3. int? perPage,
})

Returns a list of LDAP groups

Permissions Must have manage_system permission. Minimum server version: 5.11

Parameters:

  • String q: Search term

  • int page: The page to select.

  • int perPage: The number of users per page. There is a maximum limit of 200 users per page.

Implementation

Future<List<MmLDAPGroupsPaged>?> getLdapGroups({
  String? q,
  int? page,
  int? perPage,
}) async {
  final response = await getLdapGroupsWithHttpInfo(
    q: q,
    page: page,
    perPage: perPage,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    final responseBody = await _decodeBodyBytes(response);
    return (await apiClient.deserializeAsync(responseBody, 'List<MmLDAPGroupsPaged>') as List)
        .cast<MmLDAPGroupsPaged>()
        .toList();
  }
  return null;
}