modifyGroupNameWithHttpInfo method

Future<Response> modifyGroupNameWithHttpInfo(
  1. String id,
  2. String name
)

Update group name

Update existing group name

Note: This method returns the HTTP Response.

Parameters:

  • String id (required): The id of the group

  • String name (required): The new name for the group

Implementation

Future<Response> modifyGroupNameWithHttpInfo(String id, String name,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/group/{id}/name/{name}'.replaceAll('{id}', id).replaceAll('{name}', name);

  // 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,
    'PUT',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
    authNames,
  );
}