createUserWithHttpInfo method
Create a user
Create a user. HealthcareParty ID should be set. Email or Login have to be set. If login hasn't been set, Email will be used for Login instead.
Note: This method returns the HTTP Response
.
Parameters:
- UserDto userDto (required):
Implementation
Future<Response> createUserWithHttpInfo(UserDto userDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/user';
// ignore: prefer_final_locals
Object? postBody = userDto;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const authNames = <String>[r'basicSchema'];
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
authNames,
);
}