Async Interview is the world’s most advanced video interviewing platform, offering pre-recorded interviews customized to meet any recruitment scenario.
Emit new event when a new interview response is received.
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
The 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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})