findHealthcarePartiesBySsinOrNihiiWithHttpInfo method

Future<Response> findHealthcarePartiesBySsinOrNihiiWithHttpInfo(
  1. String searchValue, {
  2. String? startKey,
  3. String? startDocumentId,
  4. int? limit,
  5. bool? desc,
})

Find healthcare parties by nihii or ssin with(out) pagination

Returns a list of healthcare parties.

Note: This method returns the HTTP Response.

Parameters:

  • String searchValue (required):

  • String startKey: A healthcare party Last name

  • String startDocumentId: A healthcare party document ID

  • int limit: Number of rows

  • bool desc: Descending

Implementation

Future<Response> findHealthcarePartiesBySsinOrNihiiWithHttpInfo(String searchValue, { String? startKey, String? startDocumentId, int? limit, bool? desc, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/hcparty/byNihiiOrSsin/{searchValue}'.replaceAll('{searchValue}', searchValue);

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (startKey != null) {
    queryParams.addAll(_queryParams('', 'startKey', startKey));
  }
  if (startDocumentId != null) {
    queryParams.addAll(_queryParams('', 'startDocumentId', startDocumentId));
  }
  if (limit != null) {
    queryParams.addAll(_queryParams('', 'limit', limit));
  }
  if (desc != null) {
    queryParams.addAll(_queryParams('', 'desc', desc));
  }

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


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