rawListContactsByHCPartyAndPatientForeignKeysWithHttpInfo method
Future<Response>
rawListContactsByHCPartyAndPatientForeignKeysWithHttpInfo(
- String hcPartyId,
- ListOfIdsDto listOfIdsDto
List contacts found By Healthcare Party and Patient foreign keys.
Note: This method returns the HTTP Response
.
Parameters:
-
String hcPartyId (required):
-
ListOfIdsDto listOfIdsDto (required):
Implementation
Future<Response> rawListContactsByHCPartyAndPatientForeignKeysWithHttpInfo(String hcPartyId, ListOfIdsDto listOfIdsDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/contact/byHcPartyPatientForeignKeys';
// ignore: prefer_final_locals
Object? postBody = listOfIdsDto;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
queryParams.addAll(_queryParams('', 'hcPartyId', hcPartyId));
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,
);
}