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

# Get Me

> Return the authenticated user with their workspaces, linked OAuth providers, and role in the active workspace. Requires session auth; rejects API-key auth with 403.



## OpenAPI

````yaml /openapi.json get /api/v1/auth/me
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /api/v1/auth/me:
    get:
      tags:
        - auth
      summary: Get Me
      description: >-
        Return the authenticated user with their workspaces, linked OAuth
        providers, and role in the active workspace. Requires session auth;
        rejects API-key auth with 403.
      operationId: get_me_api_v1_auth_me_get
      parameters:
        - in: header
          name: X-Workspace-Id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Workspace-Id
        - in: cookie
          name: riftmap_access
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Riftmap Access
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    MeResponse:
      properties:
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
        current_tos_version:
          default: '2026-06-01'
          title: Current Tos Version
          type: string
        current_workspace_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Current Workspace Id
        deletion_scheduled_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Deletion Scheduled At
        email:
          title: Email
          type: string
        email_verified:
          default: false
          title: Email Verified
          type: boolean
        full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Name
        has_password:
          default: false
          title: Has Password
          type: boolean
        id:
          format: uuid
          title: Id
          type: string
        last_login_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Last Login At
        linked_providers:
          default: []
          items:
            type: string
          title: Linked Providers
          type: array
        onboarding_completed:
          default: false
          title: Onboarding Completed
          type: boolean
        role:
          anyOf:
            - type: string
            - type: 'null'
          title: Role
        tos_accepted_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Tos Accepted At
        tos_enforcement_date:
          default: '2026-06-15'
          title: Tos Enforcement Date
          type: string
        tos_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Tos Version
        workspaces:
          items:
            additionalProperties: true
            type: object
          title: Workspaces
          type: array
      required:
        - id
        - email
        - full_name
        - avatar_url
        - last_login_at
        - workspaces
        - current_workspace_id
        - role
      title: MeResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey
    HTTPBearer:
      description: API key as Bearer token (rfm_live_... prefix)
      scheme: bearer
      type: http

````