Skip to content

Users

User account endpoints. Available on the client as client.users.

users.profile

async def profile() -> GetUserProfileExt

Get the profile of the authenticated user.

REST operation: GET /backoffice/ext/users/profile

Returns: GetUserProfileExt

async with AsyncSympheny(username, password) as client:
    profile = await client.users.profile()
with Sympheny(username, password) as client:
    profile = client.users.profile()