Employee scheduling, timesheets, tasking and communication platform
Adds a new employee or staff member to the organization in Deputy. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
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}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});