rawNewPatientDelegationsWithHttpInfo method
Future<Response>
rawNewPatientDelegationsWithHttpInfo(
- String patientId,
- List<
DelegationDto> delegationDto
Delegates a patients to a healthcare party
It delegates a patient to a healthcare party (By current healthcare party). A modified patient with new delegation gets returned.
Note: This method returns the HTTP Response
.
Parameters:
-
String patientId (required):
-
List<DelegationDto> delegationDto (required):
Implementation
Future<Response> rawNewPatientDelegationsWithHttpInfo(String patientId, List<DelegationDto> delegationDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/patient/{patientId}/delegate'.replaceAll('{patientId}', patientId);
// ignore: prefer_final_locals
Object? postBody = delegationDto;
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,
);
}