rawListFormsDelegationsStubsByHCPartyAndPatientForeignKeysWithHttpInfo method

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

List form stubs found By Healthcare Party and secret foreign keys.

Keys must be delimited by coma

Note: This method returns the HTTP Response.

Parameters:

  • String hcPartyId (required):

  • String secretFKeys (required):

Implementation

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

  // 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,
  );
}