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

# Retrieves the current authenticated user's profile information including account details, portal associations, and portal information.



## OpenAPI

````yaml https://raw.githubusercontent.com/FooBarBizarre/docs/refs/heads/main/api-reference/openapi.json get /me
openapi: 3.0.1
info:
  title: Maia Backend API
  version: v1
servers: []
security: []
paths:
  /me:
    get:
      tags:
        - Me
      summary: >-
        Retrieves the current authenticated user's profile information including
        account details, portal associations, and portal information.
      responses:
        '200':
          description: Successfully retrieved the user's profile information.
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/MeResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '404':
          description: Account not found.
components:
  schemas:
    MeResponse:
      type: object
      properties:
        account:
          $ref: '#/components/schemas/Account'
        accountPortals:
          type: array
          items:
            $ref: '#/components/schemas/AccountPortal'
          nullable: true
        portal:
          type: array
          items:
            $ref: '#/components/schemas/Portal'
          nullable: true
      additionalProperties: false
    Account:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type: string
          nullable: true
        email:
          type: string
          nullable: true
        phonenumber:
          type: string
          nullable: true
        memory:
          type: string
          nullable: true
        language:
          type: string
          nullable: true
        workingCity:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
      additionalProperties: false
    AccountPortal:
      type: object
      properties:
        emailDailySummary:
          type: boolean
        portalId:
          type: integer
          format: int32
        accountId:
          type: integer
          format: int32
      additionalProperties: false
    Portal:
      type: object
      properties:
        id:
          type: integer
          format: int32
        createdAt:
          type: string
          format: date-time
        status:
          $ref: '#/components/schemas/PortalStatus'
        name:
          type: string
          nullable: true
        customerServicePhone:
          type: string
          nullable: true
        supplierPhone:
          type: string
          nullable: true
        provider:
          type: string
          nullable: true
        alfaECareCompanyCode:
          type: string
          nullable: true
        organisationId:
          type: integer
          format: int32
      additionalProperties: false
    PortalStatus:
      enum:
        - 1
        - 2
        - 3
      type: integer
      format: int32

````