- API v2.0
- Job Feed
- Webhooks
AllTruckJobs API v2.0
Drivers
The drivers resource is used to manage application data submitted by drivers on AllTruckJobs.
List all drivers
URL Parameters
No parameters.
Query Parameters
optional
enum
Fetch only drivers with the specified endorsements.
Possible enum values:Doubles/Triples (T)HAZMAT (H)Tank Vehicles (N)Tanker + HAZMAT (X)
optional
enum
Fetch only drivers with the specified driver type.
Possible enum values:Owner OperatorCompany DriverStudent
optional
email
Fetch only drivers with the specified email address.
optional
date-time
Fetch only drivers who submitted their application to your company before the specified date or date/time.
optional
string
Fetch only drivers with the specified first name.
optional
boolean
Fetch only drivers who have (1) or have not (0) applied to one of your jobs.
optional
string
Fetch only drivers who applied to a job of the specified title.
optional
string
Fetch only drivers with the specified last name.
optional
integer
Fetch only drivers who live within the specified radius (in miles) of the location provided in lives_within_zip.
optional
string
Fetch only drivers who live within the radius (in miles) provided in lives_within_radius of the specified location.
optional
integer
Maximum number of drivers to return.
optional
enum
Fetch only drivers with at least the specified minimum experience.
Possible enum values:00.511.52345678910111213141516171819
20212223242526272829303132333435363738394041
42434445464748495051525354555657585960616263
64656667686970717273747576777879808182838485
8687888990919293949596979899
optional
phone
Fetch only drivers with the specified phone number.
optional
enum
Sort by the specified field. Defaults to ascending order; for descending order, put a - (hyphen) in front of the field name.
For example: -sent would sort the drivers in descending order based on the date/time they submitted their application to your company.
idnamestatedriver_typesent
optional
date-time
Fetch only drivers who submitted their application to your company after the specified date or date/time.
optional
enum
Fetch only drivers who reside in the specified state.
Possible enum values:ALAKAZARCACOCTDEFLGAHIIDILINIAKSKYLAMEMDMAMI
MNMSMOMTNENVNHNJNMNYNCNDOHOKORPARISCSDTNTXUT
VTVAWADCWVWIWY
Example Request
Example Response
[
{
"id": 12345,
"first_name": "John",
"last_name": "Doe",
"address": "1234 Example Street",
"address2": "Suite 5678",
"city": "Louisville",
"state": "KY",
"zip": "40210",
"email": "johndoe@test.com",
"phone": "1234567890",
"driver_type": "Owner Operator",
"experience": "1",
"sent": "2015-12-08T15:24:35-05:00",
"has_job_apps": true
},
{
"id": 67890,
"first_name": "Jane",
"last_name": "Smith",
"address": "1234 Example Street",
"address2": "Suite 5678",
"city": "Lexington",
"state": "KY",
"zip": "40503",
"email": "janesmith@test.com",
"phone": "1234657890",
"driver_type": "Owner Operator",
"experience": "37",
"sent": "2015-12-08T15:24:35-05:00",
"has_job_apps": false
}
]
<?xml version="1.0"?>
<drivers>
<driver>
<id>12345</id>
<first_name>John</first_name>
<last_name>Doe</last_name>
<address>1234 Example Street</address>
<address2>Suite 5678</address2>
<city>Louisville</city>
<state>KY</state>
<zip>40210</zip>
<email>johndoe@test.com</email>
<phone>1234567890</phone>
<driver_type>Company Driver</driver_type>
<experience>67</experience>
<sent>2015-12-08T15:24:35-05:00</sent>
<has_job_apps>1</has_job_apps>
</driver>
<driver>
<id>67890</id>
<first_name>Jane</first_name>
<last_name>Smith</last_name>
<address>1234 Example Street</address>
<address2>Suite 5678</address2>
<city>Lexington</city>
<state>KY</state>
<zip>40503</zip>
<email>janesmith@test.com</email>
<phone>1234657890</phone>
<driver_type>Student</driver_type>
<experience>17</experience>
<sent>2015-12-08T15:24:35-05:00</sent>
<has_job_apps></has_job_apps>
</driver>
</drivers>
Retrieve a Driver
URL Parameters
REQUIRED
integer
The ID number of the driver you want to fetch.
Query Parameters
No parameters.
Example Request
Example Response
{
"id": 12345,
"first_name": "John",
"last_name": "Doe",
"address": "1234 Example Street",
"address2": null,
"city": "Louisville",
"state": "KY",
"zip": "40210",
"sent": "2015-12-08T15:24:35-05:00",
"email": "johndoe@test.com",
"phone": "+1234567890",
"driver_type": "Student",
"experience": "66",
"endorsement": "HAZMAT (H)",
"freight_experience": "Dry Bulk",
"freight_preferences": "Box",
"license_state": "Arkansas",
"preferred_assignments": "LTL",
"preferred_regions": "Southeast",
"has_team": "",
"license_class": "Class B",
"date_of_birth": "06/16/1965",
"twic_card": "Yes",
"accidents": "1",
"moving_violations": "1",
"last_license_suspension": 2020,
"last_dui": 2017,
"interested_lease_purchase": "Yes",
"teams": "Team",
"trucks_owned": "",
"employment_history": [
{
"company": "Example Company",
"state": "PA",
"phone": "1234567890",
"start_date": "2021-01-01",
"end_date": null
}
],
"job_applications": [
{
"job_id": 21237,
"title": "Example Job Title",
"reference": "EXAMPLE12356",
"is_direct_app": true,
"created_at": "1963-07-08T07:29:23+00:00"
}
],
"is_premium": true
}
<?xml version="1.0"?>
<drivers>
<driver>
<id>12345</id>
<first_name>John</first_name>
<last_name>Doe</last_name>
<address>1234 Example Street</address>
<address2></address2>
<city>Louisville</city>
<state>KY</state>
<zip>40210</zip>
<sent>2015-12-08T15:24:35-05:00</sent>
<email>johndoe@test.com</email>
<phone>+1234567890</phone>
<driver_type>Owner Operator</driver_type>
<experience>54</experience>
<endorsement>Tanker + HAZMAT (X)</endorsement>
<freight_experience>Dry Bulk</freight_experience>
<freight_preferences>Yard Spotter</freight_preferences>
<license_state>Washington</license_state>
<preferred_assignments>OTR</preferred_assignments>
<preferred_regions>Southwest</preferred_regions>
<has_team></has_team>
<license_class>Class C</license_class>
<date_of_birth>10/02/1960</date_of_birth>
<twic_card>Yes</twic_card>
<accidents>7</accidents>
<moving_violations>1</moving_violations>
<last_license_suspension>2024</last_license_suspension>
<last_dui>2021</last_dui>
<interested_lease_purchase>Yes</interested_lease_purchase>
<teams>Both</teams>
<trucks_owned></trucks_owned>
<employment_history>
<company>Example Company</company>
<state>PA</state>
<phone>1234567890</phone>
<start_date>2021-01-01</start_date>
<end_date></end_date>
</employment_history>
<job_applications>
<job_id>55650</job_id>
<title>Example Job Title</title>
<reference>EXAMPLE12356</reference>
<is_direct_app></is_direct_app>
<created_at>1993-04-29T12:44:02+00:00</created_at>
</job_applications>
<is_premium></is_premium>
</driver>
</drivers>