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

# List User Details

> Returns details for a single user.



## OpenAPI

````yaml https://api.connectedfleet.michelin.com/fleet-management/api-docs get /public/v1/customer/{customerId}/user/{userId}
openapi: 3.0.1
info:
  title: Fleet management
  description: >-
    A comprehensive administration pack enabling full control over fleet
    structures, users, drivers, vehicles and operational data.
  contact:
    name: Masternaut
    url: https://www.masternaut.com
    email: support@masternautconnect.com
  version: 124.0.2607160821
servers:
  - url: https://api.connectedfleet.michelin.com/fleet-management
    description: Product Server
security:
  - bearerAuth: []
tags:
  - name: /driver
    description: Driver Operations
  - name: /group
    description: Group operations
  - name: /location/category
    description: Location category management operations
  - name: /location
    description: Location management operations
  - name: /role
    description: Role operations
  - name: /tokenInformation
    description: Token operations
  - name: /user
    description: User operations
  - name: /maintenance
    description: Vehicle maintenance operations
  - name: /vehicle
    description: Vehicle management operations
paths:
  /public/v1/customer/{customerId}/user/{userId}:
    get:
      tags:
        - /user
      summary: List User Details
      description: Returns details for a single user.
      operationId: getUser
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
        - name: userId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: User successfully returned.
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/UserDto'
        '400':
          description: Missing validation.
components:
  schemas:
    UserDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the user
        customerId:
          type: string
          description: Identifier of the customer the user belongs to
        userName:
          type: string
          description: Username for authentication
        externalIdentifier:
          type: string
          description: External identifier for SSO integration
        fullName:
          type: string
          description: Full display name of the user
        emailAddress:
          type: string
          description: Email address of the user
        language:
          type: object
          properties:
            language:
              type: string
            script:
              type: string
            variant:
              type: string
            displayName:
              type: string
            country:
              type: string
            unicodeLocaleAttributes:
              uniqueItems: true
              type: array
              items:
                type: string
            unicodeLocaleKeys:
              uniqueItems: true
              type: array
              items:
                type: string
            displayLanguage:
              type: string
            displayScript:
              type: string
            displayCountry:
              type: string
            displayVariant:
              type: string
            extensionKeys:
              uniqueItems: true
              type: array
              items:
                type: string
            iso3Language:
              type: string
            iso3Country:
              type: string
          description: Preferred language locale
        timezone:
          type: string
          description: User's preferred timezone
        roleId:
          type: string
          description: Identifier of the user's role
        roleName:
          type: string
          description: Display name of the user's role
        groupId:
          type: string
          description: Identifier of the user's primary group
        groupName:
          type: string
          description: Display name of the user's primary group
        unitPreferences:
          type: object
          additionalProperties:
            type: string
            description: User's unit preference settings
          description: User's unit preference settings
        sendWelcomeEmail:
          type: boolean
          description: Flag indicating whether to send a welcome email
        secondaryGroups:
          type: array
          description: List of secondary groups the user belongs to
          items:
            $ref: '#/components/schemas/IdNameDto'
      description: >-
        Represents a user in the system with their profile information and
        access settings
    IdNameDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the entity (alphanumeric)
        name:
          type: string
          description: Display name of the entity. Not returned if empty
      description: Simple identifier and name pair for groups, vehicles, or other entities.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````