I am using Airtable as the backend for my hiring assessment app (a cybersecurity hiring test). As I understand it, Airtable’s API uses bearer authentication.
I’m trying to integrate my app with Greenhouse.io, an applicant tracking system. Greenhouse’s API uses basic authentication.
The way it works is this:
- Our customer, which uses Greenhouse to manage its hiring process, gets a list of tests (assessments) from us with a GET call.
- Customer chooses which test they’d like a particular candidate to take, and gives us the details with a POST call.
- We send the test to the candidate.
- We let the customer know when the assessment is complete with a PATCH call.
- Customer gets the assessment results from us using a GET call.
Is there a no code/low code way for me to integrate with the Greenhouse API even though they use a different authentication method?