15Five

15Five is a human-centered performance management platform that creates effective managers, highly engaged employees, and top-performing organizations.

Go to site
Explore
/
Apps
/
15Five

15Five API Integrations

Build and run workflows using the 15Five API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • Users
  • Companies
  • Goals
  • Check-ins
  • Feedback
  • Recognition

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Authentication

15Five uses API keys for authentication. When you connect your 15Five account, Pipedream securely stores the keys so you can easily authenticate to 15Five APIs in both code and no-code steps.

To retrieve your API key,

  • Navigate to your 15Five account and sign in
  • Go to “Settings” at the top right > “Features” > “Integrations”> “Public API”