15Five is a human-centered performance management platform that creates effective managers, highly engaged employees, and top-performing organizations.
Emit new event when a new message is posted to one or more channels
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 when a message was posted in a direct message channel
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
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
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 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 just makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
Here are some examples of automations you can build with Pipedream on Slack:
The Slack app is the easiest and most convienent option to get started. It installs the official Pipedream bot into your Slack workspace with just a few clicks.
However, if you'd like to use your own bot registered with the Slack API, you can use the Slack Bot app instead.
The Slack Bot requires a bot token to allow your Pipedream workflows to authenticate as your bot. The extra set up steps allow you to list your custom bot on the Slack Marketplace, or install the bot on other workspaces as your bot's name instead of as Pipedream.
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}`,
},
})
},
})