Hey there,
we are trying to add managers programatically when a corresponding field was altered. We tried this:
project = ftrack.getProject('dev_tutorial')
user = ftrack.User('username')
managerType = ftrack.ManagerType('Supervisor')
# Add the user as a supervisor on the dev_tutorial project.
manager = project.createManager(user, managerType)
(taking a correct project, user and managerType)
..which is described here. But sadly this didn't work.
what do we have to do to create these managers via the new api, since 'Manager' is not a known type?
Genera