OPEN API
  1. IFTA
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. IFTA

Get IFTA jurisdiction reports

GET
http://api.firsteld.com/openapi/ifta/
IFTA
Get all jurisdiction IFTA reports for the requested time duration. Data is returned in UTC timezone.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.firsteld.com/openapi/ifta/'
Response Response Example
{
    "count": 10,
    "page_size": 123,
    "previous": null,
    "current": 1,
    "next": 2,
    "results": [
        {
            "vehicle_id": "e57c411b-caf2-4a2e-b2e8-e232824b6ddf",
            "items": [
                {
                    "state": "string",
                    "miles": 0
                }
            ]
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
page
integer 
optional
A page number within the paginated result set.
page_size
integer 
optional
Number of results to return per page.
vehicleIds
array[string]
optional
startedAfter
string <date-time>
optional
2024-05-22T01:40:16.274753Z
startedBefore
string <date-time>
optional
2024-05-22T01:40:16.274753Z

Responses

🟢200OK
application/json
Body
count
integer 
optional
Example:
10
page_size
integer 
optional
Example:
123
previous
integer  | null 
optional
Example:
null
current
integer 
optional
Example:
1
next
integer  | null 
optional
Example:
2
results
array[object (IFTAReport) {2}] 
optional
vehicle_id
string <uuid>
required
items
array[object (IFTAItem) {2}] 
required
Modified at 2025-04-23 00:31:51
Previous
Get all DVIRs
Next
Sample Webhook request for specific trigger
Built with