getOrgsIDMembersWithHttpInfo method

Future<Response> getOrgsIDMembersWithHttpInfo(
  1. String orgID, {
  2. String? zapTraceSpan,
})

List all members of an organization

Note: This method returns the HTTP Response.

Parameters:

  • String orgID (required): The organization ID.

  • String zapTraceSpan: OpenTracing span context

Implementation

Future<Response> getOrgsIDMembersWithHttpInfo(
  String orgID, {
  String? zapTraceSpan,
}) async {
  final path = r'/orgs/{orgID}/members'.replaceAll('{orgID}', orgID);

  // ignore: prefer_final_locals
  Object? postBody;

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

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