We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The SDK includes a helper to easily manipulate the users
Obtain the api object using the Authentication method explained in Getting Started or in Authentication and connection
from lumapps_api_sdk import user api = ... # previously obtained users = user.list(api) for usr_dict, usr_obj in users: print(usr_obj.uid)
save a user by providing %email%, %first_name%, %last_name%
from lumapps_api_sdk.user import User api = ... # previously obtained usr = User( api, email="%email%", representation ={"firstName":"%first_name%","lastName":"%lastName%"}, ) success, errors = usr.save() print(success)
Home