with Deputy and EmailVerify.io?
Adds a new employee or staff member to the organization in Deputy. See the documentation
Starts a work shift for a specified employee in Deputy. See the documentation
Deputy is a robust workforce management tool, catering to scheduling, timesheet tracking, and other employee coordination tasks. Leveraging the Deputy API on Pipedream allows you to automate mundane tasks, sync data across platforms, and create custom notifications based on employee actions. You could build workflows to manage shifts, sync employee details with HR systems, or trigger payroll processes, harnessing Pipedream's capability to integrate with various services without the need for manual coding.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
deputy: {
type: "app",
app: "deputy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.deputy.$auth.endpoint}/api/v1/me`,
headers: {
Authorization: `Bearer ${this.deputy.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailverify_io: {
type: "app",
app: "emailverify_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.emailverify.io/api/v1/validate`,
params: {
key: `${this.emailverify_io.$auth.api_key}`,
email: `integrations@pipedream.com`,
},
})
},
})