findHealthcarePartiesByWithHttpInfo method

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

List healthcare parties with(out) pagination

Returns a list of healthcare parties.

Note: This method returns the HTTP Response.

Parameters:

  • 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> findHealthcarePartiesByWithHttpInfo({ String? startKey, String? startDocumentId, int? limit, bool? desc, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/hcparty';

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