createBlocklistIdentifierWithHttpInfo method

Future<Response> createBlocklistIdentifierWithHttpInfo({
  1. CreateBlocklistIdentifierRequest? createBlocklistIdentifierRequest,
})

Add identifier to the block-list

Create an identifier that is blocked from accessing an instance

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<http.Response> createBlocklistIdentifierWithHttpInfo({
  CreateBlocklistIdentifierRequest? createBlocklistIdentifierRequest,
}) async {
  // ignore: prefer_const_declarations
  final path = r'/blocklist_identifiers';

  // ignore: prefer_final_locals
  Object? postBody = createBlocklistIdentifierRequest;

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

  const contentTypes = <String>['application/json'];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}