-
I'd like to show the latest 4 job positions on my website homepage https://dbistaffing.com/ is there any JS code or API I can use to do that? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi, I was able to achieve this by creating a RSS feed to post "featured" jobs to my website. This method should work, in your case, to get the latest 4 jobs. Not sure where your site is hosted but you may be able to use something like Zapier to pull the RSS feed and load the data to your homepage. I don't work for Bullhorn, just stumbled upon this post and thought I'd share. |
Beta Was this translation helpful? Give feedback.
-
Just found a solution: `<?php
|
Beta Was this translation helpful? Give feedback.
Just found a solution:
`<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://public-rest30.bullhornstaffing.com/rest-services/1VOIP/query/JobBoardPost?where=(isOpen=true)&fields=id,title,publishedCategory(id,name),address(city,state),employmentType,dateLastPublished,publicDescription,isOpen,isPublic,isDeleted&count=4&orderBy=-dateLastPublished&start=0");