> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# User

GraphQL object

Reference: https://docs.revvue.ai/api-reference/auth-tenants/types/objects/user

## Fields

- `id` — User Id.
- `name` — User full name.
- `email` — Email.
- `roles` — roles
- `scopes` — scopes
- `token` — JWT access token.
- `decodedToken` — Decoded JWT access token.
- `tenantId` — User tenant id.
- `identityProviders` — Identity providers
- `emailVerified` — Email verified.

## Definition

```graphql
type User {
  id: String
  name: String
  email: String
  roles: [Role]
  scopes: [Scope]
  token: String
  decodedToken: JSONString
  tenantId: String
  identityProviders: [String]
  emailVerified: Boolean
}
```