rawNewHealthElementDelegationsWithHttpInfo method

Future<Response> rawNewHealthElementDelegationsWithHttpInfo(
  1. String healthElementId,
  2. List<DelegationDto> delegationDto
)

Delegates a health element to a healthcare party

It delegates a health element to a healthcare party (By current healthcare party). Returns the element with new delegations.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> rawNewHealthElementDelegationsWithHttpInfo(String healthElementId, List<DelegationDto> delegationDto,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/helement/{healthElementId}/delegate'.replaceAll('{healthElementId}', healthElementId);

  // ignore: prefer_final_locals
  Object? postBody = delegationDto;

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

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


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