Documentation :: AlliedTravelCareers.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": "Interventional+Radiology",
        "experience": "3 - 5",
        "licensed_states": "New Jersey",
        "contact_time": "Morning",
        "preferred_destinations": "Nevada",
        "preferred_cities": "Nemo nobis ut error iste qui hic rerum eveniet. Ipsa enim excepturi aut distinctio. Sint cupiditate debitis nihil aut fugiat. Voluptas et molestiae fugit sunt est.",
        "license_number": "v8d8u2i3r3n9t7m6q8b9",
        "license_state": "Missouri",
        "license_date_issued": "08/13/1971",
        "license_date_expires": "04/03/1966",
        "license_investigated": "Yes",
        "license_investigation_details": "",
        "travel_status": "Current 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": 84637,
                "title": "Example Job Title",
                "reference": "EXAMPLE12356",
                "is_direct_app": false,
                "created_at": "1999-11-04T01:36:51+00:00"
            }
        ],
        "unlocked_by": "Smith, John",
        "is_premium": true
    }
}