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 each time a record is added, updated, or deleted in an Airtable table. See the documentation
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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})