Documentation :: TravelNurseSource.com

TravelNurseSource API v2.0

Leads

The leads resource is used to manage application data submitted by leads on TravelNurseSource.

List all leads

GET https://www.travelnursesource.com/api/v2.0/leads.json GET https://www.travelnursesource.com/api/v2.0/leads.xml

URL Parameters


No parameters.

Query Parameters


certifications optional enum

Fetch only leads with the specified certifications.

Possible enum values:
  • ACLS
  • BLS
  • NRP
  • PALS


email optional email

Fetch only leads with the specified email address.


end_date optional date-time

Fetch only leads who submitted their application to your company or were unlocked before the specified date or date/time.


end_unlocked_date optional date-time

Fetch only leads who were unlocked by your agency on or before the specified date or date/time.


first_name optional string

Fetch only leads with the specified first name.


has_job_apps optional boolean

Fetch only leads who have (1) or have not (0) applied to one of your jobs.


job_title optional string

Fetch only leads who applied to a job of the specified title.


last_name optional string

Fetch only leads with the specified last name.


license optional enum

Fetch only leads with the specified license.

Possible enum values:
  • RN
  • LPN / LVN
  • CNA


licensed_states optional enum

Fetch only leads who are licensed in the specified state(s).

Possible enum values:
  • AL
  • AK
  • AZ
  • AR
  • CA
  • CO
  • CT
  • DE
  • FL
  • GA
  • HI
  • ID
  • IL
  • IN
  • IA
  • KS
  • KY
  • LA
  • ME
  • MD
  • MA
  • MI
  • MN
  • MS
  • MO
  • MT
  • NE
  • NV
  • NH
  • NJ
  • NM
  • NY
  • NC
  • ND
  • OH
  • OK
  • OR
  • PA
  • RI
  • SC
  • SD
  • TN
  • TX
  • UT
  • VT
  • VA
  • WA
  • DC
  • WV
  • WI
  • WY
  • Compact


lives_within_radius optional integer

Fetch only leads who live within the specified radius (in miles) of the location provided in lives_within_zip.


lives_within_zip optional string

Fetch only leads who live within the radius (in miles) provided in lives_within_radius of the specified location.


max optional integer

Maximum number of leads to return.


min_experience optional enum

Fetch only leads with at least the specified minimum experience.

Possible enum values:
  • < 1
  • 1 - 2
  • 3 - 5
  • 6 - 10
  • 11 - 15
  • 16 - 20
  • 21 - 25
  • 26 - 30
  • 31 - 35
  • 36 - 40
  • 41 - 45
  • 46 - 50


not_unlocked optional boolean

Fetch only leads who have not been unlocked by your agency.


phone optional phone

Fetch only leads with the specified phone number.


sort 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.

Possible enum values:
  • id
  • name
  • state
  • license
  • sent


start_date optional date-time

Fetch only leads who submitted their application to your company or were unlocked after the specified date or date/time.


start_unlocked_date optional date-time

Fetch only leads who were unlocked by your agency on or after the specified date or date/time.


state optional enum

Fetch only leads who reside in the specified state.

Possible enum values:
  • AL
  • AK
  • AZ
  • AR
  • CA
  • CO
  • CT
  • DE
  • FL
  • GA
  • HI
  • ID
  • IL
  • IN
  • IA
  • KS
  • KY
  • LA
  • ME
  • MD
  • MA
  • MI
  • MN
  • MS
  • MO
  • MT
  • NE
  • NV
  • NH
  • NJ
  • NM
  • NY
  • NC
  • ND
  • OH
  • OK
  • OR
  • PA
  • RI
  • SC
  • SD
  • TN
  • TX
  • UT
  • VT
  • VA
  • WA
  • DC
  • WV
  • WI
  • WY


travel_status optional enum

Fetch only leads of the specified travel status.

Possible enum values:
  • Current Traveler
  • Previous Traveler
  • None


unlocked_by optional email

Fetch only leads who were unlocked by the specified user.


work_eligible optional boolean

Fetch only leads of the specified work eligibility.


Example Request

GET https://www.travelnursesource.com/api/v2.0/leads.json GET https://www.travelnursesource.com/api/v2.0/leads.xml

Example Response

[
    {
        "id": 12345,
        "first_name": "John",
        "last_name": "Doe",
        "address": "1234 Example Street",
        "address2": "Suite 5678",
        "city": "Louisville",
        "state": "KY",
        "zip": "40210",
        "email": "[email protected]",
        "phone": "1234567890",
        "license": "LPN+%2F+LVN",
        "experience": "1 - 2",
        "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": "[email protected]",
        "phone": "1234657890",
        "license": "LPN+%2F+LVN",
        "experience": "3 - 5",
        "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>[email protected]</email>
    <phone>1234567890</phone>
    <license>RN</license>
    <experience>46 - 50</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>[email protected]</email>
    <phone>1234657890</phone>
    <license>LPN+%2F+LVN</license>
    <experience>41 - 45</experience>
    <sent>2015-12-08T15:24:35-05:00</sent>
    <has_job_apps></has_job_apps>
  </lead>
</leads>

Retrieve a Lead

GET https://www.travelnursesource.com/api/v2.0/leads.json/:id GET https://www.travelnursesource.com/api/v2.0/leads.xml/:id

URL Parameters


id REQUIRED integer

The ID number of the lead you want to fetch.


Query Parameters


No parameters.

Example Request

GET https://www.travelnursesource.com/api/v2.0/leads.json/12345 GET https://www.travelnursesource.com/api/v2.0/leads.xml/12345

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": "[email protected]",
    "phone": "1234567890",
    "license": "RN",
    "experience": "< 1",
    "certification": "NRP",
    "specialties": "Stepdown",
    "contact_time": "Weekends",
    "preferred_destinations": "North Carolina",
    "preferred_cities": "Eum tenetur facilis et itaque distinctio. Omnis nam placeat ab laborum et. Molestias odit itaque rerum doloremque et minima natus accusamus. Alias dolores omnis ut aut eius.",
    "licensed_states": "Georgia",
    "license_number": "p5g0x3y6d3o3q4m4e4x2",
    "license_state": "Tennessee",
    "license_date_issued": "12/23/1948",
    "license_date_expires": "02/14/1945",
    "license_investigated": "No",
    "license_investigation_details": "",
    "travel_status": "None",
    "work_eligible": "Yes",
    "employment_history": [
        {
            "company": "Example Company",
            "state": "PA",
            "phone": "1234567890",
            "start_date": "2021-01-1",
            "end_date": null
        }
    ],
    "job_applications": [
        {
            "job_id": 50034,
            "title": "Example Job Title",
            "reference": "EXAMPLE12356",
            "is_direct_app": true,
            "created_at": "1947-09-16T09:04:03+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>[email protected]</email>
    <phone>1234567890</phone>
    <license>RN</license>
    <experience>11 - 15</experience>
    <certification>NRP</certification>
    <specialties>Orthopedics</specialties>
    <contact_time>Weekends</contact_time>
    <preferred_destinations>Maryland</preferred_destinations>
    <preferred_cities>Nobis autem repellat quo non molestiae quia est. Aut error modi labore. Sint autem reiciendis odio consequatur ea saepe.</preferred_cities>
    <licensed_states>New York</licensed_states>
    <license_number>a4c3x4p1w2u9f0d8n0u8</license_number>
    <license_state>Arkansas</license_state>
    <license_date_issued>07/29/2003</license_date_issued>
    <license_date_expires>06/13/1989</license_date_expires>
    <license_investigated>No</license_investigated>
    <license_investigation_details></license_investigation_details>
    <travel_status>Current Traveler</travel_status>
    <work_eligible>No</work_eligible>
    <employment_history>
      <company>Example Company</company>
      <state>PA</state>
      <phone>1234567890</phone>
      <start_date>2021-01-1</start_date>
      <end_date></end_date>
    </employment_history>
    <job_applications>
      <job_id>78602</job_id>
      <title>Example Job Title</title>
      <reference>EXAMPLE12356</reference>
      <is_direct_app>1</is_direct_app>
      <created_at>1997-03-30T09:54:07+00:00</created_at>
    </job_applications>
    <unlocked_by>Smith, John</unlocked_by>
    <is_premium>1</is_premium>
  </lead>
</leads>