getUsersByUsernamesWithHttpInfo method
Get users by usernames
Get a list of users based on a provided list of usernames. ##### Permissions Requires an active session but no other permissions.
Note: This method returns the HTTP Response
.
Parameters:
- List<String> requestBody (required): List of usernames
Implementation
Future<Response> getUsersByUsernamesWithHttpInfo(
List<String> requestBody,
) async {
// ignore: prefer_const_declarations
final path = r'/users/usernames';
// ignore: prefer_final_locals
Object? postBody = requestBody;
final queryParams = <MmQueryParam>[];
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,
);
}