cgetMembersByInternalService method

Future<Response<MemberPagination>> cgetMembersByInternalService({
  1. required String xKeyclicApp,
  2. required String internalService,
  3. String? acceptLanguage,
  4. DateTime? xDateTime,
  5. String? xKeyclicAppPlatform,
  6. String? xKeyclicAppVersion,
  7. List<String>? orderLeftSquareBracketRightSquareBracket,
  8. String? archived,
  9. DateTime? after,
  10. DateTime? before,
  11. String? organization,
  12. List<String>? organizationsLeftSquareBracketRightSquareBracket,
  13. String? permission,
  14. String? query,
  15. String? role,
  16. List<String>? rolesLeftSquareBracketRightSquareBracket,
  17. String? type,
  18. int? page,
  19. int? limit,
  20. CancelToken? cancelToken,
  21. Map<String, dynamic>? headers,
  22. Map<String, dynamic>? extra,
  23. ValidateStatus? validateStatus,
  24. ProgressCallback? onSendProgress,
  25. ProgressCallback? onReceiveProgress,
})

Retrieve all Member resources.

Parameters:

  • xKeyclicApp
  • internalService - The identifier of the resource.
  • acceptLanguage
  • xDateTime
  • xKeyclicAppPlatform
  • xKeyclicAppVersion
  • orderLeftSquareBracketRightSquareBracket
  • archived
  • after
  • before
  • organization
  • organizationsLeftSquareBracketRightSquareBracket
  • permission
  • query
  • role
  • rolesLeftSquareBracketRightSquareBracket
  • type
  • page - Page of the overview.
  • limit - Page of the overview.
  • cancelToken - A CancelToken that can be used to cancel the operation
  • headers - Can be used to add additional headers to the request
  • extras - Can be used to add flags to the request
  • validateStatus - A ValidateStatus callback that can be used to determine request success based on the HTTP status of the response
  • onSendProgress - A ProgressCallback that can be used to get the send progress
  • onReceiveProgress - A ProgressCallback that can be used to get the receive progress

Returns a Future containing a Response with a MemberPagination as data Throws DioError if API call or serialization fails Keyclic API documentation. Also see Retrieve all Member resources. Documentation

Implementation

Future<Response<MemberPagination>> cgetMembersByInternalService({
  required String xKeyclicApp,
  required String internalService,
  String? acceptLanguage,
  DateTime? xDateTime,
  String? xKeyclicAppPlatform,
  String? xKeyclicAppVersion,
  List<String>? orderLeftSquareBracketRightSquareBracket,
  String? archived,
  DateTime? after,
  DateTime? before,
  String? organization,
  List<String>? organizationsLeftSquareBracketRightSquareBracket,
  String? permission,
  String? query,
  String? role,
  List<String>? rolesLeftSquareBracketRightSquareBracket,
  String? type,
  int? page,
  int? limit,
  CancelToken? cancelToken,
  Map<String, dynamic>? headers,
  Map<String, dynamic>? extra,
  ValidateStatus? validateStatus,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
}) async {
  final String path = r'/internal-services/{internalService}/members'
      .replaceAll('{' r'internalService' '}', internalService.toString());
  final options = Options(
    method: r'GET',
    headers: <String, dynamic>{
      // to string ??
      if (acceptLanguage != null) r'accept-language': acceptLanguage,
      if (xDateTime != null) r'x-date-time': xDateTime,
      r'x-keyclic-app': xKeyclicApp,
      if (xKeyclicAppPlatform != null)
        r'x-keyclic-app-platform': xKeyclicAppPlatform,
      if (xKeyclicAppVersion != null)
        r'x-keyclic-app-version': xKeyclicAppVersion,
      ...?headers,
    },
    extra: <String, dynamic>{
      'secure': <Map<String, String>>[
        {
          'type': 'apiKey',
          'name': 'bearer',
          'keyName': 'Authorization',
          'where': 'header',
        },
      ],
      ...?extra,
    },
    validateStatus: validateStatus,
  );

  final queryParameters = <String, dynamic>{
    if (orderLeftSquareBracketRightSquareBracket != null)
      r'order[]': encodeCollectionQueryParameter(
          orderLeftSquareBracketRightSquareBracket,
          format: ListFormat.multi),
    if (archived != null) r'archived': encodeQueryParameter(archived),
    if (after != null) r'after': encodeQueryParameter(after),
    if (before != null) r'before': encodeQueryParameter(before),
    if (organization != null)
      r'organization': encodeQueryParameter(organization),
    if (organizationsLeftSquareBracketRightSquareBracket != null)
      r'organizations[]': encodeCollectionQueryParameter(
          organizationsLeftSquareBracketRightSquareBracket,
          format: ListFormat.multi),
    if (permission != null) r'permission': encodeQueryParameter(permission),
    if (query != null) r'query': encodeQueryParameter(query),
    if (role != null) r'role': encodeQueryParameter(role),
    if (rolesLeftSquareBracketRightSquareBracket != null)
      r'roles[]': encodeCollectionQueryParameter(
          rolesLeftSquareBracketRightSquareBracket,
          format: ListFormat.multi),
    if (type != null) r'type': encodeQueryParameter(type),
    if (page != null) r'page': encodeQueryParameter(page),
    if (limit != null) r'limit': encodeQueryParameter(limit),
  };

  final response = await _apiClient.dio.request<Object>(
    path,
    options: options,
    queryParameters: queryParameters,
    cancelToken: cancelToken,
    onSendProgress: onSendProgress,
    onReceiveProgress: onReceiveProgress,
  );

  MemberPagination responseData;

  try {
    responseData = await _apiClient.deserializeAsync<MemberPagination>(
        response.data!, 'MemberPagination');
  } catch (error, stackTrace) {
    throw DioError(
      requestOptions: response.requestOptions,
      response: response,
      type: DioErrorType.other,
      error: error,
    )..stackTrace = stackTrace;
  }

  return Response<MemberPagination>(
    data: responseData,
    headers: response.headers,
    isRedirect: response.isRedirect,
    requestOptions: response.requestOptions,
    redirects: response.redirects,
    statusCode: response.statusCode,
    statusMessage: response.statusMessage,
    extra: response.extra,
  );
}