modifyGroupPropertiesWithHttpInfo method
Future<Response>
modifyGroupPropertiesWithHttpInfo(
- String id,
- ListOfPropertiesDto listOfPropertiesDto
Update group properties
Update existing group properties
Note: This method returns the HTTP Response
.
Parameters:
-
String id (required): The id of the group
-
ListOfPropertiesDto listOfPropertiesDto (required):
Implementation
Future<Response> modifyGroupPropertiesWithHttpInfo(String id, ListOfPropertiesDto listOfPropertiesDto,) async {
// ignore: prefer_const_declarations
final path = r'/rest/v1/group/{id}/properties'.replaceAll('{id}', id);
// ignore: prefer_final_locals
Object? postBody = listOfPropertiesDto;
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,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
authNames,
);
}