OPEN API
  1. Maintenance
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
  • Schemas
    • Schemas
      • AvailableTime
      • CompanyDetail
      • CompanyResponse
      • CurrentStatusEnum
      • DVIRList
      • Driver
      • DVIRTrailerDefects
      • DriverLicense
      • DVIRVehicle
      • DriverResponse
      • DVIRVehicleDefects
      • HosDailyLogs
      • HosDailyLogsResponse
      • HosLogsResponse
      • ForVehicleLocationResponse
      • LicensePlate
      • Location
      • PaginatedDriverList
      • IFTAItem
      • PaginatedHosLogsResponseList
      • IFTAReport
      • PaginatedTripResponseList
      • PaginatedVehicleList
      • PaginatedVehicleLocationResponseList
      • OpenAPIWebhookSubscribeRequest
      • Response
      • OpenAPIWebhookUnsubscribeRequest
      • Result
      • StatusEnum
      • PaginatedDVIRListList
      • StatusDurations
      • TimezoneEnum
      • TripLocation
      • VehicleRoute
      • PaginatedIFTAReportList
      • PaginatedForVehicleLocationResponseList
      • TripResponse
      • VehicleRouteLocation
      • TripStartEnd
      • VehicleRouteStartEnd
      • Vehicle
      • VehicleSResponse
      • VehicleLocationResponse
      • VehicleStats
      • PaginatedWebhookTriggerList
      • VehicleResponse
      • WebhookTrigger
  1. Maintenance

Get all DVIRs

GET
https://api.firsteld.com/openapi/dvirs/
Returns a list of all DVIRs in an organization.

Request

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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.firsteld.com/openapi/dvirs/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "count": 10,
    "page_size": 123,
    "previous": null,
    "current": 1,
    "next": 2,
    "results": [
        {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "vehicle": {
                "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
                "name": "string"
            },
            "startTime": "2019-08-24T14:15:22Z",
            "endTime": "2019-08-24T14:15:22Z",
            "licensePlate": "",
            "location": "",
            "mechanicNotes": "",
            "odometerMeters": 0,
            "safetyStatus": "string",
            "trailer": "string",
            "trailerDefects": [
                {
                    "name": "string"
                }
            ],
            "type": "string",
            "vehicleDefects": [
                {
                    "name": "string"
                }
            ]
        }
    ]
}
Modified at 2025-08-22 17:06:20
Previous
Vehicle Stats snapshot
Next
Get IFTA jurisdiction reports
Built with