Async Interview is the world’s most advanced video interviewing platform, offering pre-recorded interviews customized to meet any recruitment scenario.
Go to siteThe Async Interview API enables automation around video interview processes. With this API, you can craft workflows on Pipedream that manipulate interview data, initiate new interviews, and respond to events within the Async Interview platform. Pipedream's serverless architecture allows you to connect with hundreds of apps to streamline recruitment workflows, analyze interview data, or enhance the candidate experience with personalized interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
async_interview: {
type: "app",
app: "async_interview",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.asyncinterview.ai/api/jobs`,
headers: {
Authorization: `Bearer ${this.async_interview.$auth.api_token}`,
},
})
},
})
Automated Candidate Follow-Up: After an interview is completed, trigger an automated email to the candidate with personalized feedback or next steps using the Gmail app.
Interview Data Analysis: Gather interview responses and feed them into a Google Sheets document for further analysis, allowing HR teams to make data-driven decisions.
Scheduling Interviews: Integrate with a calendar service like Google Calendar to automatically schedule interviews once a candidate passes a certain application stage, and send calendar invites to both interviewers and candidates.
Emit new event when a new interview response is received.
Async Interview uses API keys for authentication. When you connect your Async Interview account, Pipedream securely stores the keys so you can easily authenticate to Async Interview APIs in both code and no-code steps.