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

# Get current user profile with organization



## OpenAPI

````yaml /openapi.json get /api/users/me
openapi: 3.0.0
info:
  title: GoMobile Backend API
  description: >-
    API documentation for GoMobile telephony platform - automated calling
    campaigns, interactive voice flows, and call management
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:3000
    description: Local Development
security: []
tags:
  - name: Organizations
    description: Multi-tenant organization management
  - name: Teams
    description: Team structure and hierarchy
  - name: Contacts
    description: Customer contact management (CRM)
  - name: Entities
    description: Business entities management
  - name: Audiences
    description: Contact segmentation and groups
  - name: Programs
    description: Call campaign configuration
  - name: Call Flows
    description: Interactive call flow builder
paths:
  /api/users/me:
    get:
      tags:
        - Users
      summary: Get current user profile with organization
      operationId: UserController_getMe
      parameters: []
      responses:
        '200':
          description: Current user profile with organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserMeResponseDto'
        '401':
          description: Unauthorized
components:
  schemas:
    UserMeResponseDto:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        phone:
          type: string
          nullable: true
        isEmailVerified:
          type: boolean
        lastLoginAt:
          format: date-time
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        organization:
          $ref: '#/components/schemas/OrganizationDto'
      required:
        - id
        - email
        - firstName
        - lastName
        - isEmailVerified
        - lastLoginAt
        - createdAt
        - updatedAt
        - organization
    OrganizationDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        slug:
          type: string
        country:
          type: string
        type:
          type: string
          enum:
            - government
            - enterprise
            - individual
            - education
            - ngo
        industry:
          type: string
        plan:
          type: string
          enum:
            - trial
            - free
            - basic
            - advanced
            - enterprise
        size:
          type: string
          enum:
            - 1-10
            - 11-50
            - 51-200
            - 500+
        primaryUse:
          type: string
          enum:
            - sales
            - support
            - market research
        ice:
          type: string
          nullable: true
        timezone:
          type: string
        currency:
          type: string
        status:
          type: string
          enum:
            - active
            - suspended
            - inactive
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
        - id
        - name
        - slug
        - country
        - type
        - industry
        - plan
        - size
        - primaryUse
        - timezone
        - currency
        - status
        - createdAt
        - updatedAt

````