Integrate with your Careers page
Use Bob's Hiring API to integrate with your external careers page directly from Bob Hiring
Bob Hiring is an all-in-one recruitment solution, allowing you to create job openings, promote them to job boards, career pages and other custom sources, and manage candidates throughout the pipeline.
Bob Hiring’s API lets you integrate with an external careers page so that you can post job openings to it directly from Bob Hiring. Additionally, candidates who apply from the careers page will be directed to Bob’s application form, allowing you to receive candidates directly to your job opening’s hiring pipeline in Bob.
This process can save time, streamline the management of the job openings on your careers page, and allow you to track new applicants from a single place.
Note: The Hiring API includes endpoints are described in Bob's Public API reference guide. In this article we will cover how to use these endpoints to integrate successfully with your careers page.
How to integrate with your careers page
To integrate job ads in Bob's careers page with your careers page, follow these steps:
- Follow the steps to set up your custom careers page’s URL in Bob.
- Post job openings to your career page on Bob to create a job ad. To learn more about promoting job in Bob, see Promote a job opening.
- Develop the code on your website to fetch job ads from Bob using the API endpoints. To learn more, see Fetching Job ads and their details.
- On your careers page, direct users to the application form link that is returned in the response from Bob. This ensures that new candidates that use the application form will be received and displayed in Bob Hiring with the source label “Careers page.”
Fetching Job ads and their details
- To fetch job ads you need to use the following endpoints:
- Get all active job ads from your Career page
Fetch a list of job ads with their details. You can specify which fields you want to retrieve.
You can use this endpoint to fetch the list of job ads IDs and then get the details of each job ad using the next endpoint. - Get the details of a single job ad
Fetch the complete details of a single job ad.
- Get all active job ads from your Career page
- Working with Get all active job ads from your Career page endpoint:
- Use the 'fields' parameter in the request body to specify which fields to fetch. For a detailed list of available fields, refer to the schema in the '200 response' section in the endpoint documentation.
- Use the 'filters' parameter to filter the results. To retrieve all active job ads send an empty array in the 'filters' parameter in the request body, or specify filters in the request body to narrow the results.
- Posting on your career page: For each job ad retrieved from Bob, you should create a corresponding page on your career page. Ensure the URL for each job ad on your website matches the custom format defined in Bob, using a structure like
https://yourdomain.com/careers/{jobId}
. To learn more, see set up your custom careers page’s URL in Bob. - To allow new candidates to apply, ensure you retrieve and utilize the 'jobAd/applyUrl' field from each job ad's response. This URL links to an application form hosted by Bob, which automatically submits the candidate's details back to Bob.
Testing guidelines
Permissions
The service user you use with the Hiring API endpoints does not require special permissions, so you can use the most basic service user permissions group. To learn more, see the API Service users guide.
Testing the endpoint
Since the Get all active job ads from your Career page requires body parameters in order to send the filtering and fields specification, this endpoint uses the 'POST' method (not 'GET'). Make sure you use the right method in your code and testing, and include all necessary filters and fields in the request body.
To learn more, see Test the API.
Updated about 1 month ago