with Envoy and VectorShift?
Emit new event for each visitor who signed in or out. See the docs
Emit new event for each invitations to a person or a group of people to visit a location. See the docs
Emit new event when a knowledge base is created in Vectorshift.
Emit new event when a new pipeline is created in VectorShift.
Adds data to a knowledge base in VectorShift. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Executes a VectorShift pipeline with specified inputs. See the documentation
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.
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})