getAuthorizationsWithHttpInfo method

Future<Response> getAuthorizationsWithHttpInfo({
  1. String? zapTraceSpan,
  2. String? userID,
  3. String? user,
  4. String? orgID,
  5. String? org,
})

List all authorizations

Note: This method returns the HTTP Response.

Parameters:

  • String zapTraceSpan: OpenTracing span context

  • String userID: Only show authorizations that belong to a user ID.

  • String user: Only show authorizations that belong to a user name.

  • String orgID: Only show authorizations that belong to an organization ID.

  • String org: Only show authorizations that belong to a organization name.

Implementation

Future<Response> getAuthorizationsWithHttpInfo({
  String? zapTraceSpan,
  String? userID,
  String? user,
  String? orgID,
  String? org,
}) async {
  final path = r'/authorizations';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  if (userID != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'userID', userID));
  }
  if (user != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'user', user));
  }
  if (orgID != null) {
    queryParams
        .addAll(_convertParametersForCollectionFormat('', 'orgID', orgID));
  }
  if (org != null) {
    queryParams.addAll(_convertParametersForCollectionFormat('', 'org', org));
  }

  if (zapTraceSpan != null) {
    headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
  }

  const authNames = <String>[
    'BasicAuthentication',
    'QuerystringAuthentication',
    'TokenAuthentication'
  ];
  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes[0],
    authNames,
  );
}