listHealthcarePartiesInGroupWithHttpInfo method

Future<Response> listHealthcarePartiesInGroupWithHttpInfo(
  1. String groupId
)

List healthcare parties for a provided group id

Returns a list of Users/healthcare parties contained in the group owning the providing id. In order to be returned, a healthcare party needs to be linked to a user an this user must have a property 'org.taktik.icure.public' set to a boolean true.

Note: This method returns the HTTP Response.

Parameters:

  • String groupId (required): Healthcare parties group id

Implementation

Future<Response> listHealthcarePartiesInGroupWithHttpInfo(String groupId,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/aa/hcparty/inGroup/{groupId}'.replaceAll('{groupId}', groupId);

  // ignore: prefer_final_locals
  Object? postBody;

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

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


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