Documentation :: LocumJobsOnline.com

Webhooks

New Lead

This event is triggered when you receive a new lead.

  • Only HTTP POST is supported for now
  • Only JSON is supported for now

Sample POST Payload

{
    "event": "new-lead",
    "lead": {
        "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": "CRNA",
        "experience": "31 - 35",
        "employmentType": "Locum Tenens",
        "specialties": "Oncology",
        "contact_time": "Evening",
        "preferred_destinations": "Georgia",
        "licensed_states": "Virginia",
        "preferred_cities": "Numquam in ut in tenetur non. Ducimus voluptatem saepe officia consequatur deserunt. Vel omnis quia ut perspiciatis ut saepe officia eaque.",
        "license_number": "m6l0x9a1z4i8j1o4p4t1",
        "license_state": "Alaska",
        "license_date_issued": "10/09/1942",
        "license_date_expires": "02/21/1995",
        "license_investigated": "No",
        "license_investigation_details": "",
        "travel_status": "Previous Traveler",
        "work_eligible": "No",
        "employment_history": [
            {
                "company": "Example Company",
                "state": "PA",
                "phone": "1234567890",
                "start_date": "2021-01-1",
                "end_date": null
            }
        ],
        "job_applications": [
            {
                "job_id": 43024,
                "title": "Example Job Title",
                "reference": "EXAMPLE12356",
                "is_direct_app": true,
                "created_at": "1988-06-16T03:28:22+00:00"
            }
        ],
        "unlocked_by": "Smith, John"
    }
}