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

> Returns details for a single role.



## OpenAPI

````yaml https://api.connectedfleet.michelin.com/fleet-management/api-docs get /public/v1/customer/{customerId}/role/{roleId}
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}/role/{roleId}:
    get:
      tags:
        - /role
      summary: List Role Details
      description: Returns details for a single role.
      operationId: getRole
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: string
        - name: roleId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Role details successfully returned
          content:
            application/json;charset=UTF-8:
              schema:
                $ref: '#/components/schemas/RoleDto'
        '400':
          description: Bad request
components:
  schemas:
    RoleDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the role
        name:
          type: string
          description: Display name of the role
        activeFeatureKeys:
          type: array
          description: List of active feature keys assigned to this role
          items:
            type: string
      description: Represents a user role with its associated features
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````