import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruiterflow: {
type: "app",
app: "recruiterflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://recruiterflow.com/api/external/user/list`,
headers: {
"rf-api-key": `${this.recruiterflow.$auth.api_key}`,
},
params: {
include_count: `true`,
},
})
},
})
Associates a candidate with a job posting in Recruiterflow. See the documentation
Creates a new candidate in Recruiterflow. See the documentation
Creates a new job posting in Recruiterflow. See the documentation
Records a successful candidate placement in Recruiterflow. See the documentation
Moves a candidate to a different stage in the job pipeline. You can specify either stage ID or stage name. See the documentation
Recruiterflow uses API keys for authentication. When you connect your Recruiterflow account, Pipedream securely stores the keys so you can easily authenticate to Recruiterflow APIs in both code and no-code steps.