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 Formatting API

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

[Data] Convert JSON to String with Formatting API on New event when a visitor changes its signed status from Envoy API
Envoy + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New event when a visitor is invited from Envoy API
Envoy + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New event when a visitor changes its signed status from Envoy API
Envoy + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New event when a visitor is invited from Envoy API
Envoy + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New event when a visitor changes its signed status from Envoy API
Envoy + Formatting
 
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
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
Create an Invite with the Envoy API

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

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})