> ## 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.

# Get Token Information

> Retrieves comprehensive information associated with the authenticated token, including customer details, user information, hierarchy, timezone, and other settings.



## OpenAPI

````yaml /api-reference/vehicle-tracking.json get /public/v1/tokenInformation
openapi: 3.0.1
info:
  title: Vehicle Tracking
  description: >-
    A foundational pack delivering essential “track & trace” capability across
    your fleet.
  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: /alert
    description: Alert history and notification management operations
  - name: /input
    description: Input usage operations for vehicles and drivers
  - name: /journey/detail
    description: Journey detail operations with vehicle and driver perspectives
  - name: /location
    description: Location management operations
  - name: /tokenInformation
    description: Token operations
  - name: /tracking/history
    description: Tracking history operations for vehicles and drivers
  - name: /tracking/journey
    description: Journey tracking and management operations
  - name: /tracking/live
    description: Live tracking operations
  - name: /vehicle
    description: Vehicle management operations
paths:
  /public/v1/tokenInformation:
    get:
      tags:
        - /tokenInformation
      summary: Get Token Information
      description: >-
        Retrieves comprehensive information associated with the authenticated
        token, including customer details, user information, hierarchy,
        timezone, and other settings.
      operationId: getPersonInformation
      responses:
        '200':
          description: Token information retrieved successfully.
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/TokenInformationResultDto'
components:
  schemas:
    TokenInformationResultDto:
      type: object
      properties:
        customerId:
          type: string
          description: Unique identifier of the customer
        emailAddress:
          type: string
          description: Email address of the user
        userName:
          type: string
          description: Username of the user
        customerName:
          type: string
          description: Name of the customer organization
        locale:
          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: Locale preference of the user
        currency:
          type: string
          description: Currency code used by the user
        personId:
          type: string
          description: Unique identifier of the person
        groupId:
          type: string
          description: Unique identifier of the primary group
        groupName:
          type: string
          description: Name of the primary group
        groupPath:
          type: array
          description: Path of groups in the hierarchy
          items:
            $ref: '#/components/schemas/GroupResultDto'
        enabledFeatures:
          type: array
          description: List of enabled feature keys
          items:
            type: string
            description: Features enabled for this token
        fullName:
          type: string
          description: Full name of the person
        customerIds:
          uniqueItems: true
          type: array
          description: Set of customer IDs
          items:
            type: string
            description: Identifiers of all customers accessible by the user
        metadata:
          type: object
          additionalProperties:
            type: string
            description: Feature-specific metadata
          description: Feature-specific metadata
        timezone:
          type: string
          description: The timezone
        dateFormat:
          type: string
          description: Date format pattern
        unitSettings:
          type: object
          additionalProperties:
            type: string
            description: Unit settings
          description: Unit settings
        region:
          type: string
          description: Geographical region of the customer
        driver:
          type: boolean
          description: Indicates whether the user is a driver
        webUser:
          type: boolean
          description: Indicates whether the user is a web user
        tempAdminUser:
          type: boolean
      description: >-
        Comprehensive information associated with an authenticated token,
        including customer details, user information, hierarchy, and
        localization settings
    GroupResultDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the group
        name:
          type: string
          description: Name of the group
      description: Represents a group node in the organizational hierarchy
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````