findHealthcarePartiesByNameWithHttpInfo method

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

Find healthcare parties by name with(out) pagination

Returns a list of healthcare parties.

Note: This method returns the HTTP Response.

Parameters:

  • String name: The Last name search value

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

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (name != null) {
    queryParams.addAll(_queryParams('', 'name', name));
  }
  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,
  );
}