Intelligent people management and real-time analytics for HR, managers and leaders. Performance, engagement, wellbeing, compliance, automation and more
Go to siteThe IntelliHR API offers a gateway to a comprehensive human resource management system, focusing on performance, analytics, and automation. It enables developers to integrate various aspects of HR management, such as employee data, performance reviews, and training records, into their own applications or workflows. Using the API on Pipedream, one can seamlessly connect IntelliHR with other services to automate tasks, sync data, and create responsive HR solutions that operate in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
intellihr: {
type: "app",
app: "intellihr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.intellihr.io/v1/users`,
headers: {
Authorization: `Bearer ${this.intellihr.$auth.api_key}`,
"tenant": `${this.intellihr.$auth.tenant_name}`,
},
})
},
})
Automate Employee Onboarding Processes: Streamline the onboarding of new hires by creating a Pipedream workflow that triggers on new employee records in IntelliHR. The workflow can send out welcome emails, schedule training sessions, and assign tasks in project management tools like Asana or Trello automatically.
Sync Employee Data with Payroll Services: Ensure employee data is consistent across platforms by crafting a workflow that listens for updates in IntelliHR, then syncs changed details to a payroll service like Gusto or ADP. This can include updates to personal information, job positions, or salary changes, maintaining data integrity without manual intervention.
Generate Custom Reports and Alerts: Design a workflow that aggregates data from IntelliHR, such as performance metrics or attendance records, and feeds it into a reporting tool like Google Sheets or Tableau. Set up alerts that notify managers via Slack or email when specific thresholds are met, enabling timely responses to HR insights.
Emit new event when a new job is created in intellihr. See the documentation
Emit new event when a new person is created in intellihr. See the documentation
Emit new event when a new training record is created in intellihr. See the documentation
Creates a new individual record in intellihr. See the documentation
Modifies an existing person's record in intellihr. See the documentation
IntelliHR uses API keys for authentication. When you connect your IntelliHR account, Pipedream securely stores the keys so you can easily authenticate to IntelliHR APIs in both code and no-code steps.