Livelink 9.7.1
Hi!
How can we delete a user using LAPI call?
Can you please also provide class and method names to perform deletion of a user?
I am writing in Java.
Thanks in advance!
This is well described in the documentation. I assume that you have access to it?!
The calls are as follows:
LLSession session = new LLSession(...);LAPI_USERS users = new LAPI_USERS(session);users.DeleteUser(username);
Thanks Tomas, for providing the info!
I appreciate it!!
I am not a developer. I was trying to assist one of our java developer with that info.