- API v2.0
- Job Feed
- Webhooks
TravelNurseSource API v2.0
Leads
The leads resource is used to manage application data submitted by leads on TravelNurseSource.
List all leads
URL Parameters
No parameters.
Query Parameters
optional
enum
Fetch only leads with the specified certifications.
Possible enum values:ACLSBLSNRPPALS
optional
email
Fetch only leads with the specified email address.
optional
date-time
Fetch only leads who submitted their application to your company or were unlocked before the specified date or date/time.
optional
date-time
Fetch only leads who were unlocked by your agency on or before the specified date or date/time.
optional
string
Fetch only leads with the specified first name.
optional
boolean
Fetch only leads who have (1) or have not (0) applied to one of your jobs.
optional
string
Fetch only leads who applied to a job of the specified title.
optional
string
Fetch only leads with the specified last name.
optional
enum
Fetch only leads with the specified license.
Possible enum values:Registered Nurse (RN)Licensed Practical / Licensed Vocational Nurse (LPN/LVN)Certified Nurse Assistant (CNA)
optional
enum
Fetch only leads who are licensed in the specified state(s).
Possible enum values:ALAKAZARCACOCTDEFLGAHIIDILINIAKSKYLAMEMDMAMI
MNMSMOMTNENVNHNJNMNYNCNDOHOKORPARISCSDTNTXUT
VTVAWADCWVWIWYCompact
optional
integer
Fetch only leads who live within the specified radius (in miles) of the location provided in lives_within_zip.
optional
string
Fetch only leads who live within the radius (in miles) provided in lives_within_radius of the specified location.
optional
integer
Maximum number of leads to return.
optional
enum
Fetch only leads with at least the specified minimum experience.
Possible enum values:0123456789101112131415161718192021
22232425262728293031323334353637383940414243
44454647484950515253545556575859606162636465
66676869707172737475767778798081828384858687
888990919293949596979899
optional
boolean
Fetch only leads who have not been unlocked by your agency.
optional
phone
Fetch only leads 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 leads in descending order based on the date/time they submitted their application to your agency.
idnamestatelicensesent
optional
date-time
Fetch only leads who submitted their application to your company or were unlocked after the specified date or date/time.
optional
date-time
Fetch only leads who were unlocked by your agency on or after the specified date or date/time.
optional
enum
Fetch only leads who reside in the specified state.
Possible enum values:ALAKAZARCACOCTDEFLGAHIIDILINIAKSKYLAMEMDMAMI
MNMSMOMTNENVNHNJNMNYNCNDOHOKORPARISCSDTNTXUT
VTVAWADCWVWIWY
optional
email
Fetch only leads who were unlocked by the specified user.
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",
"license": "CNA",
"experience": "35",
"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",
"license": "LPN / LVN",
"experience": "42",
"sent": "2015-12-08T15:24:35-05:00",
"has_job_apps": false
}
]
<?xml version="1.0"?>
<leads>
<lead>
<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>
<license>LPN / LVN</license>
<experience>61</experience>
<sent>2015-12-08T15:24:35-05:00</sent>
<has_job_apps>1</has_job_apps>
</lead>
<lead>
<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>
<license>LPN / LVN</license>
<experience>75</experience>
<sent>2015-12-08T15:24:35-05:00</sent>
<has_job_apps></has_job_apps>
</lead>
</leads>
Retrieve a Lead
URL Parameters
REQUIRED
integer
The ID number of the lead 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",
"license": "CNA",
"experience": "39",
"certification": "NRP",
"specialties": "Med/Surg / Ortho",
"contact_time": "Morning",
"preferred_destinations": "Connecticut",
"preferred_cities": "Sapiente rerum tempora praesentium amet nostrum. Provident qui similique quas ex voluptas.",
"licensed_states": "South Dakota",
"license_state": "Connecticut",
"license_date_issued": "09/26/1946",
"license_date_expires": "06/29/1989",
"license_investigated": "Yes",
"license_investigation_details": "",
"employment_history": [
{
"company": "Example Company",
"state": "PA",
"phone": "1234567890",
"start_date": "2021-01-01",
"end_date": null
}
],
"job_applications": [
{
"job_id": 75587,
"title": "Example Job Title",
"reference": "EXAMPLE12356",
"is_direct_app": true,
"created_at": "1976-08-09T11:17:50+00:00"
}
],
"unlocked_by": "Smith, John",
"is_premium": false
}
<?xml version="1.0"?>
<leads>
<lead>
<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>
<license>CNA</license>
<experience>13</experience>
<certification>NRP</certification>
<specialties>ER/Trauma</specialties>
<contact_time>Morning</contact_time>
<preferred_destinations>Vermont</preferred_destinations>
<preferred_cities>Dolores minima blanditiis cum illum rerum mollitia animi. Ut ut quam dolor qui sed beatae. Ut enim repudiandae voluptatibus est quisquam ea reprehenderit est.</preferred_cities>
<licensed_states>Kentucky</licensed_states>
<license_state>Wisconsin</license_state>
<license_date_issued>12/20/1993</license_date_issued>
<license_date_expires>06/12/1945</license_date_expires>
<license_investigated>Yes</license_investigated>
<license_investigation_details></license_investigation_details>
<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>10783</job_id>
<title>Example Job Title</title>
<reference>EXAMPLE12356</reference>
<is_direct_app></is_direct_app>
<created_at>2007-04-25T04:57:36+00:00</created_at>
</job_applications>
<unlocked_by>Smith, John</unlocked_by>
<is_premium>1</is_premium>
</lead>
</leads>