OPEN API
  1. Drivers
OPEN API
  • Organization Info
    • Get information about your organization
      GET
  • Drivers
    • List all drivers
      GET
    • Retrieve a driver
      GET
  • Hours Of Service
    • Get HOS clocks
      GET
    • Get all driver HOS daily logs
      GET
    • Get HOS logs
      GET
  • Vehicles
    • List all vehicles
      GET
    • Retrieve a vehicle
      GET
  • Vehicle Locations
    • Historical Vehicle Locations
      GET
    • Latest Vehicle Locations
      GET
  • Trips
    • Get Vehicle Trips
      GET
  • Vehicle Stats
    • Vehicle Stats snapshot
      GET
  • Maintenance
    • Get all DVIRs
      GET
  • IFTA
    • Get IFTA jurisdiction reports
      GET
  • Webhook
    • Sample Webhook request for specific trigger
      GET
    • Subscribe to specific immediately events
      POST
    • Available list of Triggers
      GET
    • Unsubscribe form events
      POST
  1. Drivers

Retrieve a driver

GET
http://api.firsteld.com/openapi/drivers/{id}/
Drivers
Get information about a driver.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.firsteld.com/openapi/drivers//'
Response Response Example
{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "status": "string",
    "username": "string",
    "firstName": "string",
    "lastName": "string",
    "email": "string",
    "phone": "string",
    "license": {
        "state": "string",
        "number": "string"
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required

Responses

🟢200OK
application/json
Body
id
string <uuid>
read-onlyrequired
ID Vehicle State
status
string 
read-onlyrequired
Status of the driver
username
string 
required
Driver username
firstName
string 
required
Driver first name
lastName
string 
required
Driver last name
email
string 
required
Driver email
phone
string 
required
Driver phone number
license
object 
read-onlyrequired
Driver license number
state
string 
required
State of the driver license, Example: CA
number
string 
required
Driver license number, Example: A1234567890
Modified at 2025-04-23 00:31:51
Previous
List all drivers
Next
Get HOS clocks
Built with