Wix API Integration with Bullhorn

Hi,

I would like to build a website for a recruitment agency which uses Bullhorn technology to list their jobs:

www.bullhorn.co.uk

The client would like to integrate Bullhorn’s system on to the website. Is this possible with Wix?
Bullhorn have stated that we ask Wix whether you support API connection.

This might come in handy for you re. their developer info:

http://bullhorn.github.io/docs/

Can you help with this please.

Thank you

Bump, please help.

https://www.wix.com/corvid/reference/wix-fetch.html
https://support.wix.com/en/article/corvid-accessing-third-party-services-with-the-fetch-api

https://www.wix.com/corvid/reference/wix-http-functions.html
https://support.wix.com/en/article/corvid-exposing-a-site-api-with-http-functions

https://www.wix.com/corvid/forum/corvid-tips-and-updates/example-myapi-and-myapiclient

https://support.wix.com/en/article/corvid-managing-external-code-libraries-with-the-package-manager
https://www.wix.com/corvid/npm-modules

Thanks, although I don’t know what to do with than information. I’d need someone who knows what to do.

How would I find a dev to enable this?

were you able to do this successfully in the end? I will be looking to integrate Bullhorn with Wix for job postings and keen to know if this can be done!

You may want to check out the WixArena - it’s a hub where you can look for Corvid (and other) experts for hire.

No, I got little help here from the Corvid forum.

@christianmichaels See the links in @givemeawhisky 's post above for all the information you need. If you have trouble working it out, then you can turn to the WixArena .

1 Like

@yisrael-wix Thanks, someone could have pointed me in that direction in August.

Basically, you will need to use the bullhorn API docs below (REST API)
http://bullhorn.github.io/rest-api-docs/

Then you would use the Wix-fetch function as shown in the below documentation
https://www.wix.com/corvid/reference/wix-fetch.html#fetch


import {fetch} from 'wix-fetch';

// ...

let url = 'Bullhorn URL' //the URL provided within the Bullhorn API Documentation

fetch(url, {"method": "get"})
  .then( (httpResponse) => {
    if (httpResponse.ok) {
      return httpResponse.json();
    } else {
      return Promise.reject("Fetch did not succeed");
    }
  } )
  .then(json => console.log(json) // This is the return data from the bullhorn API)
  .catch(err => console.log(err));

as @Yisrael (Wix) stated this is advanced coding so check out the Corvid Developers in the Arena
Click here for a direct link to them

1 Like