Deputy

Employee scheduling, timesheets, tasking and communication platform

Integrate the Deputy API with the Delay API

Setup the Deputy API trigger to run a workflow which integrates with the Delay API. Pipedream's integration platform allows you to integrate Deputy and Delay 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
Delay Workflow with Delay API on New Colleague Created (Instant) from Deputy API
Deputy + Delay
 
Try it
Delay Workflow with Delay API on New Post Created (Instant) from Deputy API
Deputy + Delay
 
Try it
Delay Workflow with Delay API on New Timesheet Saved (Instant) from Deputy API
Deputy + Delay
 
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
Delay Workflow with the Delay API

Delay the execution of your workflow for a specific amount of time (does not count against your compute time).

 
Try it
Create Location with the Deputy API

Creates a new location in Deputy. See the documentation

 
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}`,
      },
    })
  },
})

Overview of Delay

The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.

Connect Delay

1
2
3
4
5
6
7
export default defineComponent({
  async run({steps, $}) {
    // Specify the amount of time to delay your workflow in milliseconds
    return $.flow.delay(5000)
  },
})

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