Trusted by Recruitment Agencies in 100+ countries. Recruit CRM builds cloud-based software for the global Recruitment & Staffing industry.
Triggers when a new candidate is created. See the documentation
Triggers when a task is updated. See the documentation
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
The Recruit CRM API provides a suite of functions to automate and streamline recruitment processes. It allows you to integrate your recruitment workflow with other services, create custom applications, or even build bots. With Pipedream, you can connect the Recruit CRM API to a vast array of other apps and services to automate actions like updating candidate records, syncing with HR systems, or triggering notifications based on recruitment activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruit_crm: {
type: "app",
app: "recruit_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.recruitcrm.io/v1/users`,
headers: {
Authorization: `Bearer ${this.recruit_crm.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})