with HR Cloud and Azure Storage?
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation
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 blob is created to a specified container in Azure Storage. 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
Creates a new container under the specified account. If a container with the same name already exists, the operation fails. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_storage: {
type: "app",
app: "azure_storage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.azure_storage.$auth.oauth_access_token}`,
},
})
},
})