createBlocklistIdentifierWithHttpInfo method
Future<Response>
createBlocklistIdentifierWithHttpInfo({
- 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:
- CreateBlocklistIdentifierRequest createBlocklistIdentifierRequest:
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,
);
}