Retrieve Process Model Folder Id

Is there any way to get the ProcessModelFolder id from uuid in java API?.

OriginalPostID-237484

  Discussion posts and replies are publicly visible

Parents
  • I think you are trying to get the folderId of the folder in which a process model is saved based on its UUID. The ProcessModel class has a inherited method - getFolderId(). You can use it. Before that, get an instance of ProcessModel by uuid - For eg:
    ProcessModel pm = ProcessDesignService.getProcessModelByUuid(uuidOfPM);
    Long folderId = pm.getFolderId();
Reply
  • I think you are trying to get the folderId of the folder in which a process model is saved based on its UUID. The ProcessModel class has a inherited method - getFolderId(). You can use it. Before that, get an instance of ProcessModel by uuid - For eg:
    ProcessModel pm = ProcessDesignService.getProcessModelByUuid(uuidOfPM);
    Long folderId = pm.getFolderId();
Children
No Data