rawListHealthElementsByHCPartyAndPatientForeignKeysWithHttpInfo method

Future<Response> rawListHealthElementsByHCPartyAndPatientForeignKeysWithHttpInfo(
  1. String hcPartyId,
  2. String secretFKeys
)

List health elements found By Healthcare Party and secret foreign keyelementIds.

Keys hast to delimited by coma

Note: This method returns the HTTP Response.

Parameters:

  • String hcPartyId (required):

  • String secretFKeys (required):

Implementation

Future<Response> rawListHealthElementsByHCPartyAndPatientForeignKeysWithHttpInfo(String hcPartyId, String secretFKeys,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/helement/byHcPartySecretForeignKeys';

  // 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('', 'secretFKeys', secretFKeys));

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


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