How To Integrate Hiring Bull With Your Corporate Website?

Sep 06, 2023

Hiring Bull is an applicant tracking system that allows you to display published jobs on your corporate website career site in real-time. You can achieve this integration through the following ways:

Way 1: Show Published Job on Your Corporate Website

<div id="dvJobs"></div>
<script src="https://{{subDomain}}.hiringbull.com/javascript/careersite.integration.v2.js"></script>
<script type="text/javascript">
    document.getElementById('dvJobs').renderHiringBullJobs({
        domain: '{{subDomain}}'
    });
</script>
    

Way 1 allows you to display published jobs on your corporate website without any additional filters. Simply include the above code on your web page, and it will render the Hiring Bull jobs.

Way 2: Show Published Jobs with Department Filters

<div id="dvJobs2"></div>
<script src="https://{{subDomain}}.hiringbull.com/javascript/careersite.integration.v3.js"></script>
<script type="text/javascript">
    renderHiringBullJobs({
        domain: '{{subDomain}}',
        renderEl: document.getElementById('dvJobs2'),
        showDepartment: true
    });
</script>
    

Way 2 allows you to display published jobs with department filters. Include the code on your web page, and it will render Hiring Bull jobs with the option to filter by department.

Way 3: Show Published Jobs with Application Form and Department Filter

<div id="dvJobs3"></div>
<div id="dvApplicationForm"></div>
<script src="https://{{subDomain}}.hiringbull.com/javascript/careersite.integration.v3.js"></script>
<script src="https://{{subDomain}}.hiringbull.com/javascript/careersite.applicationform.js"></script>
<script type="text/javascript">
    renderHiringBullJobs({
        domain: '{{subDomain}}',
        showForm: true,
        showDepartment: true,
        displayAreaId: "dvApplicationForm",
        renderEl: document.getElementById('dvJobs3')
    });
</script>
    

Way 3 allows you to display published jobs with an application form and department filter. Include the code on your web page, and it will render Hiring Bull jobs with the application form and department filter option.

Note

Don't forget to replace {{subDomain}} with your actual Hiring Bull portal's domain. You can customize the designs according to your corporate website theme using your own custom css.