rawCreatePatientWithHttpInfo method
Create a patient
Name, last name, date of birth, and gender are required. After creation of the patient and obtaining the ID, you need to create an initial delegation.
Note: This method returns the HTTP Response
.
Parameters:
- PatientDto patientDto (required):
Implementation
Future<Response> rawCreatePatientWithHttpInfo(PatientDto patientDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/patient';
// ignore: prefer_final_locals
PatientDto postBody = patientDto;
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,
toJsonDeep(postBody),
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
authNames,
);
}