Envoy

Join thousands of companies that rely on Envoy to efficiently manage hybrid workplaces, so everyone inside can connect, collaborate, and thrive.

Integrate the Envoy API with the Schedule API

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

Create an Invite with Envoy API on Custom Interval from Schedule API
Schedule + Envoy
 
Try it
Create an Invite with Envoy API on Daily schedule from Schedule API
Schedule + Envoy
 
Try it
Create an Invite with Envoy API on Monthly Schedule from Schedule API
Schedule + Envoy
 
Try it
Create an Invite with Envoy API on Weekly schedule from Schedule API
Schedule + Envoy
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New event when a visitor changes its signed status from the Envoy API

Emit new event for each visitor who signed in or out. See the docs.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New event when a visitor is invited from the Envoy API

Emit new event for each invitations to a person or a group of people to visit a location. See the docs.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Create an Invite with the Envoy API

Create an Invite to a person to visit a location. See the docs.

 
Try it

Overview of Envoy

The Envoy API empowers users to streamline workplace operations, particularly visitor management, deliveries, and room bookings. Leveraging Pipedream's capabilities, you can automate tasks involving these aspects. For example, you can receive notifications when guests arrive, sync visitor data with other systems, or automate the creation and management of room bookings.

Connect Envoy

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: {
    envoy: {
      type: "app",
      app: "envoy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.envoy.com/v1/employees/`,
      headers: {
        Authorization: `Bearer ${this.envoy.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.