getOrgsWithHttpInfo method

Future<Response> getOrgsWithHttpInfo({
  1. String? zapTraceSpan,
  2. int? offset,
  3. int? limit,
  4. bool? descending,
  5. String? org,
  6. String? orgID,
  7. String? userID,
})

List all organizations

Note: This method returns the HTTP Response.

Parameters:

  • String zapTraceSpan: OpenTracing span context

  • int offset:

  • int limit:

  • bool descending:

  • String org: Filter organizations to a specific organization name.

  • String orgID: Filter organizations to a specific organization ID.

  • String userID: Filter organizations to a specific user ID.

Implementation

Future<Response> getOrgsWithHttpInfo({
  String? zapTraceSpan,
  int? offset,
  int? limit,
  bool? descending,
  String? org,
  String? orgID,
  String? userID,
}) async {
  final path = r'/orgs';

  // ignore: prefer_final_locals
  Object? postBody;

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

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

  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,
  );
}