rawNewContactDelegationsWithHttpInfo method
Future<Response>
rawNewContactDelegationsWithHttpInfo(
- String contactId,
- DelegationDto delegationDto
Delegates a contact to a healthcare party
It delegates a contact to a healthcare party (By current healthcare party). Returns the contact with new delegations.
Note: This method returns the HTTP Response
.
Parameters:
-
String contactId (required):
-
DelegationDto delegationDto (required):
Implementation
Future<Response> rawNewContactDelegationsWithHttpInfo(String contactId, DelegationDto delegationDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/contact/{contactId}/delegate'.replaceAll('{contactId}', contactId);
// 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,
);
}