listBlocklistIdentifiersWithHttpInfo method
List all identifiers on the block-list
Get a list of all identifiers which are not allowed to access an instance
Note: This method returns the HTTP Response
.
Implementation
Future<http.Response> listBlocklistIdentifiersWithHttpInfo() async {
// ignore: prefer_const_declarations
final path = r'/blocklist_identifiers';
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}