with Zoho Recruit and Workflow Max?
Creates a new record or updates existing record if already present. See the documentation
The Zoho Recruit API lets you access the Zoho Recruit ATS functionalities programmatically, enabling integrations with other services, automation of tasks, and enhancement of the recruitment process. With this API in Pipedream, you can trigger workflows based on events in Zoho Recruit, manipulate candidate data, post jobs, schedule interviews, and automate communication. The seamless connection between Zoho Recruit and other apps through Pipedream creates a powerful ecosystem to streamline your hiring workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_recruit: {
type: "app",
app: "zoho_recruit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://recruit.${this.zoho_recruit.$auth.base_api_uri}/recruit/v2/settings/roles`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_recruit.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workflow_max: {
type: "app",
app: "workflow_max",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.workflowmax2.com/me`,
headers: {
Authorization: `Bearer ${this.workflow_max.$auth.oauth_access_token}`,
"accept": `application/json`,
"account_id": `${this.workflow_max.$auth.account_id}`,
},
})
},
})