Skip to main content

User Service

monei.user, manage the authenticated user’s profile.

Get Current User

user = monei.user.get_current_user()
print(user.email, user.kyc_tier)

Update User

updated = monei.user.update_user("user-id", {
    "first_name": "Ada",
    "last_name": "Lovelace",
})