public async Task <ActionResult <bool> > DeleteApiEndpoint(int roleGroupId,
                                                            int apiGroupId)
 {
     return(Ok(await _roleGroupService.RemoveApiGroup(UserId, roleGroupId, apiGroupId)));
 }