How to user Adobe Connect API to change a user's manager
Greetings,
I'm looking for a way to change a user's manager via the API.
I can query the manager info using:
$FullResponse = Invoke-RestMethod ('https://mywebsite/api/xml?action=principal-info&principal-id=' + $PrincipalID) -WebSession $Session
$ManagerID = $FullResponse.results.manager.'principal-id'
$ManagerName = $FullResponse.results.manager.name
$ManagerEmail = $FullResponse results.manager.email
And then writing the information to the screen, but so far I have not found a way to change the manager via the API.
Any help would be appreciated.
Thanks,
