removeGroupFromContentRestrictionById method
Deprecated, use Remove group from content restriction by groupId. Removes a group from a content restriction. That is, remove read or update permission for the group for a piece of content.
Permissions required: Permission to edit the content.
Implementation
@deprecated
Future<void> removeGroupFromContentRestrictionById(
{required String id,
required String operationKey,
required String groupName}) async {
await _client.send(
'delete',
'wiki/rest/api/content/{id}/restriction/byOperation/{operationKey}/group/{groupName}',
pathParameters: {
'id': id,
'operationKey': operationKey,
'groupName': groupName,
},
);
}