> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wisdom.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# User

This page describes the User object that represents a user account in WisdomAI.

## User

<ParamField path="id" type="ID!" required>
  A unique identifier for the user.
</ParamField>

<ParamField path="email" type="String!" required>
  The user's email address.
</ParamField>

<ParamField path="name" type="String!" required>
  The user's display name.
</ParamField>

<ParamField path="profilePicture" type="String!" required>
  URL to the user's profile picture.
</ParamField>

<ParamField path="creationTimestamp" type="String!" required>
  Timestamp when the user account was created.
</ParamField>

<ParamField path="lastActiveSessionTimestamp" type="String">
  Timestamp of the user's last active session. Null if the user has never logged in.
</ParamField>

<ParamField path="roleAssignments" type="[RoleAssignment!]!" required>
  List of role assignments granted to this user.
</ParamField>

<ParamField path="userAttributes" type="[UserAttribute!]!" required>
  User attributes from the authentication token.
</ParamField>

<ParamField path="isScimManaged" type="Boolean!" required>
  Whether this user account is managed via SCIM provisioning.
</ParamField>

## Related operations

<CardGroup cols={2}>
  <Card title="Current User Query" icon="magnifying-glass" href="/integrations/graphql-api/queries/user/current-user">
    Query the current authenticated user
  </Card>
</CardGroup>
