15Five is a human-centered performance management platform that creates effective managers, highly engaged employees, and top-performing organizations.
The 15Five API enables you to build custom integrations and applications on top
of the 15Five platform. With the API, you can access data stored in 15Five,
including:
You can use the API to build applications that help 15Five users manage their
work and achieve their goals. For example, you could build a custom integration
that links 15Five with another tool that your team uses, such as a project
management tool or a CRM. Or, you could build a custom application that helps
users track their progress on their goals, or provides them with recognition
for a job well done.
Whatever you build, the 15Five API gives you the power to customize the 15Five
experience for your users in a way that best meets their needs.
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 Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:
export default defineComponent({
async run({ steps, $ }) {
let condition = false
if (condition == false) {
$.flow.exit("Ending workflow early because the condition is false")
} else {
$.export("$summary", "Continuing workflow, since condition for ending was not met.")
}
},
})