Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Emit new event when a new message is posted to one or more channels
Emit new event when a candidate submits a new application.
Emit new event when a candidate's application or status changes.
Emit new event when a new interview is scheduled within a specific time period.
Adds an attachment to a specific candidate or prospect. See the documentation
Send a message to a public or private channel. See the documentation
Creates a new candidate entry in Greenhouse. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Creates a new prospect entry in Greenhouse. See the documentation
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once 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.
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}`,
},
})
},
})
The Greenhouse API offers a powerful suite of tools for automating and enhancing the recruitment process. It allows you to programmatically access candidate information, job listings, scorecards, and scheduling details, which opens a myriad of possibilities for streamlining recruiting workflows. By leveraging the Greenhouse API on Pipedream, you can automate repetitive tasks, integrate with other HR systems, analyze recruitment data, and build custom event-driven workflows to improve the efficiency and effectiveness of your hiring process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
greenhouse: {
type: "app",
app: "greenhouse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://harvest.greenhouse.io/v1/user_roles`,
auth: {
username: `${this.greenhouse.$auth.api_key}`,
password: ``,
},
})
},
})