15Five is a human-centered performance management platform that creates effective managers, highly engaged employees, and top-performing organizations.
Emit new event for each new 1-on-1 created. See the documentation
Emit new event for each new high five received. See the documentation
Emit new event when any of the specified SendGrid events is received
The 15Five API grants access to a performance management platform designed to help employees grow and achieve their goals. With Pipedream, you can leverage this API to automate feedback collection, synchronize performance data across various systems, and trigger actions based on employee responses. By interconnecting 15Five with other apps, you can streamline HR processes, enhance employee engagement strategies, and maintain a pulse on organizational health.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
f15five: {
type: "app",
app: "f15five",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.15five.com/api/public/user/`,
headers: {
"Authorization": `${this.f15five.$auth.api_key}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})