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

# Get User Details

Retrieve detailed information about a specific user by their ID. Requires Administrative access.


## OpenAPI

````yaml GET /api/v1/users/{id}
openapi: 3.1.0
info:
  title: WaveCentric AI LooP API
  description: >-
    Comprehensive API for managing omnichannel logistics, inquiries, tasks, and
    data lake operations.
  version: 1.0.0
servers:
  - url: https://ai-loop.alpeadria.com
    description: Production server
security: []
paths:
  /api/v1/users/{id}:
    get:
      tags:
        - User Management
      summary: Get user details
      operationId: get-user-by-id
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The MongoDB ObjectId of the user.
      responses:
        '200':
          description: User details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
              examples:
                success:
                  value:
                    _id: 507f1f77bcf86cd799439011
                    email: alice.johnson@example.com
                    name: Alice
                    surname: Johnson
                    companyName: WaveCentric
                    companyVerified: true
                    permission: admin
                    status: Completed
                    jobTitle: Operations Manager
        '404':
          description: User not found.
      security:
        - bearerAuth: []
components:
  schemas:
    User:
      type: object
      properties:
        _id:
          type: string
        email:
          type: string
        name:
          type: string
        surname:
          type: string
        companyName:
          type: string
        companyVerified:
          type: boolean
        permission:
          type: string
        status:
          type: string
        jobTitle:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````