with 15Five and Anthropic (Claude)?
Emit new event for each new 1-on-1 created. See the documentation
Emit new event for each new check-in. See the documentation
Emit new event for each new high five received. See the documentation
Create a High five within a company. See the documentation
The Chat API. See the documentation
Get check-in object details. See the documentation
Retrieve a user object. 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}`,
},
})
},
})
The Anthropic (Claude) API offers a conversational AI that can be leveraged for a variety of applications, ranging from answering questions to generating content or providing customer support. In Pipedream, you can create powerful workflows that utilize the capabilities of Claude to automate responses, analyze text, or enhance data with AI-generated insights. Pipedream's serverless platform simplifies integrating Claude into your processes with other apps and services for seamless automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
anthropic: {
type: "app",
app: "anthropic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.anthropic.com/v1/models`,
headers: {
"x-api-key": `${this.anthropic.$auth.api_key}`,
"anthropic-version": `2023年06月01日`,
},
})
},
})