rawListContactByHCPartyServiceIdWithHttpInfo method

Future<Response> rawListContactByHCPartyServiceIdWithHttpInfo(
  1. String hcPartyId,
  2. String serviceId
)

List contacts found By Healthcare Party and service Id.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> rawListContactByHCPartyServiceIdWithHttpInfo(String hcPartyId, String serviceId,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/contact/byHcPartyServiceId';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  queryParams.addAll(_queryParams('', 'hcPartyId', hcPartyId));
  queryParams.addAll(_queryParams('', 'serviceId', serviceId));

  const authNames = <String>[r'basicSchema'];
  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
    authNames,
  );
}