deleteBucketsIDMembersIDWithHttpInfo method

Future<Response> deleteBucketsIDMembersIDWithHttpInfo(
  1. String userID,
  2. String bucketID, {
  3. String? zapTraceSpan,
})

Remove a member from a bucket

Note: This method returns the HTTP Response.

Parameters:

  • String userID (required): The ID of the member to remove.

  • String bucketID (required): The bucket ID.

  • String zapTraceSpan: OpenTracing span context

Implementation

Future<Response> deleteBucketsIDMembersIDWithHttpInfo(
  String userID,
  String bucketID, {
  String? zapTraceSpan,
}) async {
  final path = r'/buckets/{bucketID}/members/{userID}'
      .replaceAll('{userID}', userID)
      .replaceAll('{bucketID}', bucketID);

  // 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,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes[0],
    authNames,
  );
}