Users

class UsersApi(client)

Set of functions to access and manipulate Users.

get_list(fields=None, order=None, skip=0, take=None, where=None, **kwargs)
get_info(id)
get_actions_log(id, start=None, end=None)
list_supervisors()
list_interviewers(id)
unarchive(id)
archive(id)
create(user_name, password, role=UserRole.INTERVIEWER, supervisor='', full_name='', email='', phone_number='')
viewer(username=None, password=None)
lock(user_name=None, user_id=None)

Lock user given either the username or guid.

Currently only works for the admin user!

unlock(user_name=None, user_id=None)

Unlock user given either the username or guid.

Currently only works for the admin user!

change_password(password, user_name=None, user_id=None)

Change password for a user.

Currently only works for the admin user!