HR Cloud is a human resources management system (HRMS) that helps businesses manage their employee data, payroll, benefits, time tracking, and more. This integration enables you to automate your HR workflows by connecting HR Cloud with thousands of other apps on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hr_cloud: {
type: "app",
app: "hr_cloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://corehr-api.hrcloud.com/v1/cloud/xEmployee`,
headers: {
"customer_key": `${this.hr_cloud.$auth.consumer_key}`,
"customer_secret": `${this.hr_cloud.$auth.consumer_secret}`,
},
})
},
})
To use this integration, you'll need an HR Cloud account and an API key. To get started,
Emit new event when a new applicant is created. See the documentation
Emit new event when a new employee is added to the system. See the documentation
Emit new event when a new task is created. See the documentation
Create a new employee record in the system. See the documentation
HR Cloud uses API keys for authentication. When you connect your HR Cloud account, Pipedream securely stores the keys so you can easily authenticate to HR Cloud APIs in both code and no-code steps.
To retrieve your Consumer Key and Consumer Secret,