Envoy

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

Go to site

Envoy API Integrations

Build and run workflows using the Envoy API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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}`,
      },
    })
  },
})
Create an Invite with Envoy API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Envoy
 
Try it
Send Message (Advanced) with Discord Webhook API on New event when a visitor is invited from Envoy API
Envoy + Discord Webhook
 
Try it
Create an Invite with Envoy API on New Submission from Typeform API
Typeform + Envoy
 
Try it
Create an Invite with Envoy API on Custom Events from Zoom API
Zoom + Envoy
 
Try it
Get Film with SWAPI - Star Wars API on New event when a visitor is invited from Envoy API
Envoy + SWAPI - Star Wars
 
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

Authentication

Envoy uses OAuth authentication. When you connect your Envoy account, Pipedream will open a popup window where you can sign into Envoy and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Envoy API.

Pipedream requests the following authorization scopes when you connect your account:

locations.readcompanies.reademployees.readtoken.refreshinvites.readentries.readinvites.write
OAuth Request Configurations:
  1. authorization
    GEThttps://app.envoy.com/a/auth/v0/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.comma_separated_scopes}}
  2. accessToken
    POSThttps://app.envoy.com/a/auth/v0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://app.envoy.com/a/auth/v0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}