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

# Get the current authenticated user

> Returns the authenticated user along with their team memberships



## OpenAPI

````yaml https://api.rallyuxr.com/api/openapi get /me
openapi: 3.1.0
info:
  title: Rally UXR Developer Docs
  version: '1.0'
servers:
  - url: https://api.rallyuxr.com/api/public/v1
security:
  - bearerAuth: []
tags:
  - name: Forms
    description: Operations on Forms in your workspace
  - name: People
    description: Operations on Person's stored in your workspace
  - name: Person Properties
    description: Operations on workspace level Person Properties
  - name: Populations
    description: Operations on Populations in your workspace
  - name: Segments
    description: Operations on Segments in your workspace
  - name: Studies
    description: Operations on Studies in your workspace
  - name: Participants
    description: Operations on Participants in studies
  - name: Participant Status Events
    description: Poll participant status-change events across your workspace
  - name: Study Status Events
    description: Poll-based access to study status-change events in your workspace
  - name: Screener
    description: Operations on a study's screener
  - name: Consent Submissions
    description: Operations on Consent Submissions for studies
  - name: Incentives
    description: Operations on Incentives in your workspace
  - name: Messages
    description: Operations on Message activities in your workspace
  - name: Imports
    description: Operations on Imports in your workspace
  - name: Users
    description: Operations on Workspace Users
  - name: Teams
    description: Operations on Teams in your workspace
  - name: Backfills
    description: >-
      Routes that can be used to backfill data into Rally. If you'd like access
      to these apis, please reach out to your Customer Success rep
  - name: Person
    description: Deprecated, use People
paths:
  /me:
    get:
      tags:
        - Users
      summary: Get the current authenticated user
      description: Returns the authenticated user along with their team memberships
      responses:
        '200':
          description: The current user
          content:
            application/json:
              schema:
                type: object
                properties:
                  userId:
                    type: string
                    description: The id of the user
                    example: usr_123456789
                  workspaceId:
                    type: string
                    description: The id of the user workspace
                    example: wsp_123456789
                  workspaceSlug:
                    type: string
                    description: The slug of the user workspace
                    example: acme-research
                  fullname:
                    type:
                      - string
                      - 'null'
                    description: The full name of the user
                    example: John Doe
                  email:
                    type: string
                    description: The email of the user
                    example: john.doe@example.com
                  jobRole:
                    type:
                      - string
                      - 'null'
                    description: The job role of the user
                    example: Product Manager
                  profilePic:
                    type:
                      - string
                      - 'null'
                    description: The profile picture URL of the user
                    example: https://example.com/profile.jpg
                  status:
                    type: string
                    enum:
                      - INVITED
                      - ACTIVE
                      - DEACTIVATED
                    description: The status of the user
                    example: ACTIVE
                  seat:
                    type:
                      - string
                      - 'null'
                    enum:
                      - RALLY
                      - RESEARCHER_FREE
                      - RESEARCHER_PAID
                      - LITE
                      - null
                    description: The seat type of the user
                    example: RESEARCHER_PAID
                  role:
                    type: string
                    enum:
                      - DEVELOPER
                      - OBSERVER
                      - RESEARCHER
                      - OPS_MANAGER
                      - SUPER_ADMIN
                      - CUSTOM
                      - COLLABORATOR
                    description: The role of the user
                    example: OPS_MANAGER
                  teams:
                    type: array
                    items:
                      type: object
                      properties:
                        teamId:
                          type: string
                          description: The id of the team
                          example: team_123456789
                        name:
                          type: string
                          description: The name of the team
                          example: Design Research
                      required:
                        - teamId
                        - name
                    description: The teams the user is a member of
                required:
                  - userId
                  - workspaceId
                  - workspaceSlug
                  - fullname
                  - email
                  - jobRole
                  - profilePic
                  - status
                  - seat
                  - role
                  - teams
        '401':
          description: Unauthorized
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/X-RateLimit-Limit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/X-RateLimit-Remaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/X-RateLimit-Reset'
          content:
            text/plain:
              schema:
                type: string
                example: Unauthorized
        '403':
          description: Forbidden
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/X-RateLimit-Limit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/X-RateLimit-Remaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/X-RateLimit-Reset'
          content:
            text/plain:
              schema:
                type: string
                example: Forbidden
        '429':
          description: Too Many Requests
          headers:
            Retry-After:
              $ref: '#/components/headers/Retry-After'
            X-RateLimit-Limit:
              $ref: '#/components/headers/X-RateLimit-Limit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/X-RateLimit-Remaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/X-RateLimit-Reset'
          content:
            text/plain:
              schema:
                type: string
                example: Too Many Requests
        '500':
          description: Internal Server Error
          headers:
            X-RateLimit-Limit:
              $ref: '#/components/headers/X-RateLimit-Limit'
            X-RateLimit-Remaining:
              $ref: '#/components/headers/X-RateLimit-Remaining'
            X-RateLimit-Reset:
              $ref: '#/components/headers/X-RateLimit-Reset'
          content:
            text/plain:
              schema:
                type: string
                example: Internal Server Error
      security:
        - bearerAuth: []
components:
  headers:
    X-RateLimit-Limit:
      description: The maximum number of requests the client is allowed to make.
      schema:
        type: integer
        format: int32
    X-RateLimit-Remaining:
      description: >-
        The number of requests remaining for the client in the current time
        window.
      schema:
        type: integer
        format: int32
    X-RateLimit-Reset:
      description: >-
        The time at which the current time window ends (in Unix timestamp
        format).
      schema:
        type: integer
        format: int32
    Retry-After:
      description: The number of seconds until the client should retry the request.
      schema:
        type: integer
        format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````