Skip to main content
4-Participant
June 24, 2026
Question

REST API to Enable / Disable the project

  • June 24, 2026
  • 0 replies
  • 0 views

Hello! 
We are trying to find a REST API which allows us to Enable/Disable a project (i.e. Lock all the trackers, prevent any changes in members, roles, etc) 

In Java based workflow actions, we are using: 
 

var project = projectDao.findById(admin, project.getId());project.setDisabled(true);projectDao.update(project);