15Five

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

Integrate the 15Five API with the Slack API

Setup the 15Five API trigger to run a workflow which integrates with the Slack API. Pipedream's integration platform allows you to integrate 15Five and Slack remarkably fast. Free for developers.

Create High Five with 15Five API on New Message In Channels (Instant) from Slack API
Slack + 15Five
 
Try it
Get Checkin Details with 15Five API on New Message In Channels (Instant) from Slack API
Slack + 15Five
 
Try it
Get User with 15Five API on New Message In Channels (Instant) from Slack API
Slack + 15Five
 
Try it
Send Message to a Public Channel with Slack API on New 1-on-1 Created from 15Five API
15Five + Slack
 
Try it
Send Message to a Public Channel with Slack API on New Checkin Created from 15Five API
15Five + Slack
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New 1-on-1 Created from the 15Five API

Emit new event for each new 1-on-1 created. See the documentation

 
Try it
New Checkin Created from the 15Five API

Emit new event for each new check-in. See the documentation

 
Try it
New High Five Received from the 15Five API

Emit new event for each new high five received. See the documentation

 
Try it
New Direct Message (Instant) from the Slack API

Emit new event when a message was posted in a direct message channel

 
Try it
Create High Five with the 15Five API

Create a High five within a company. See the documentation

 
Try it
Get Checkin Details with the 15Five API

Get check-in object details. See the documentation

 
Try it
Send Message to a Public Channel with the Slack API

Send a message to a public channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Get User with the 15Five API

Retrieve a user object. See the documentation

 
Try it
Send Message to a Private Channel with the Slack API

Send a message to a private channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it

Overview of 15Five

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.

Connect 15Five

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}`,
      },
    })
  },
})

Overview of Slack

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. When you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions, or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Connect Slack

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: {
    slack: {
      type: "app",
      app: "slack",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.

Community Posts

Airtable Webhooks with Slack + Pipedream
Airtable Webhooks with Slack + Pipedream
We love Airtable here at Pipedream. But Airtable lacks one killer feature — webhooks. We took advantage of Airtable’s Slack notifications and built a way to send webhooks to an HTTP endpoint every time a record is created or updated in a base. It takes 10 minutes to setup and it’s free.