> ## 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 Driver Details

> Returns details for a driver including their default vehicle.



## OpenAPI

````yaml /api-reference/fleet-management.json get /public/v1/customer/{customerId}/driver/{driverId}
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.masternautconnect.com/connect-webservices/services
    description: Product Server
security:
  - basicAuth: []
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}/driver/{driverId}:
    get:
      tags:
        - /driver
      summary: List Driver Details
      description: Returns details for a driver including their default vehicle.
      operationId: getDriver
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
        - name: driverId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Driver details were successfully returned
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/DriverDto'
        '400':
          description: Bad request
components:
  schemas:
    DriverDto:
      type: object
      properties:
        id:
          pattern: ^[\w]*$
          type: string
        customerId:
          type: string
        name:
          type: string
        active:
          type: boolean
        activeDate:
          type: string
          format: date-time
        groupId:
          type: string
        groupName:
          type: string
        defaultVehicleId:
          type: string
        tempVehicleId:
          type: string
        tempVehicleExpiry:
          type: string
          format: date-time
        tempVehicleNextJourneyOnly:
          type: boolean
        tempPrivateMode:
          type: boolean
        tempPrivateModeExpiry:
          type: string
          format: date-time
        tempPrivateModeNextJourneyOnly:
          type: boolean
        autoCreated:
          type: boolean
        keys:
          type: array
          items:
            $ref: '#/components/schemas/DriverKeyDto'
        tags:
          type: array
          items:
            type: string
        secondaryGroups:
          type: array
          items:
            $ref: '#/components/schemas/IdNameDto'
        externalId:
          pattern: ^[a-zA-Z0-9]{0,25}$|
          type: string
    DriverKeyDto:
      type: object
      properties:
        value:
          type: string
          description: Unique identifier or value of the driver key
          example: key-value
        type:
          type: string
          description: Type of the driver key (e.g., 'CARD', 'FOB', 'PIN')
          example: CARD
        privateMode:
          type: boolean
      description: >-
        Driver key information including key value, type, and private mode
        status.
    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:
    basicAuth:
      type: http
      scheme: basic

````