Deputy

Employee scheduling, timesheets, tasking and communication platform

Integrate the Deputy API with the Email API

Setup the Deputy API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Deputy and Email remarkably fast. Free for developers.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Employee with Deputy API on New Email from Email API
Email + Deputy
 
Try it
Create Location with Deputy API on New Email from Email API
Email + Deputy
 
Try it
Send Yourself an Email with Email API on New Colleague Created (Instant) from Deputy API
Deputy + Email
 
Try it
Send Yourself an Email with Email API on New Post Created (Instant) from Deputy API
Deputy + Email
 
Try it
Send Yourself an Email with Email API on New Timesheet Saved (Instant) from Deputy API
Deputy + Email
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
New Colleague Created (Instant) from the Deputy API

Emit new event when a new individual is added to the workplace

 
Try it
New Post Created (Instant) from the Deputy API

Emit new event when a new newsfeed post arrives

 
Try it
New Timesheet Saved (Instant) from the Deputy API

Emit new event when a new timesheet has been saved

 
Try it
Create Employee with the Deputy API

Adds a new employee or staff member to the organization in Deputy. See the documentation

 
Try it
Create Location with the Deputy API

Creates a new location in Deputy. See the documentation

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it
Start Shift with the Deputy API

Starts a work shift for a specified employee in Deputy. See the documentation

 
Try it

Overview of Deputy

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.

Connect Deputy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo