What do you want to automate

with EasyBroker and Slack?

Prompt, edit and deploy AI agents that connect to EasyBroker, Slack and 3,000+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Emoji Reaction with Slack API on New Contact Created from EasyBroker API
EasyBroker + Slack
 
Try it
Add Emoji Reaction with Slack API on New Contact Request Created from EasyBroker API
EasyBroker + Slack
 
Try it
Approve Workflow with Slack API on New Contact Created from EasyBroker API
EasyBroker + Slack
 
Try it
Approve Workflow with Slack API on New Contact Request Created from EasyBroker API
EasyBroker + Slack
 
Try it
Archive Channel with Slack API on New Contact Created from EasyBroker API
EasyBroker + Slack
 
Try it
New Contact Created from the EasyBroker API

Emit new event when a new contact is created. See the documentation

 
Try it
New Contact Request Created from the EasyBroker API

Emit new event when a new contact request is created. See the documentation

 
Try it
New Channel Created (Instant) from the Slack API

Emit new event when a new channel is created.

 
Try it
New Interaction Events (Instant) from the Slack API

Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts

 
Try it
New Keyword Mention (Instant) from the Slack API

Emit new event when a specific keyword is mentioned in a channel

 
Try it
Create Contact Request with the EasyBroker API

Creates or updates a new lead in EasyBroker that is interested in the provided property. See the documentation

 
Try it
Add Emoji Reaction with the Slack API

Add an emoji reaction to a message. See the documentation

 
Try it
Get Contact with the EasyBroker API

Get details of a contact. See the documentation

 
Try it
Approve Workflow with the Slack API

Suspend the workflow until approved by a Slack message. See the documentation

 
Try it
Get Property with the EasyBroker API

Get details of a property. See the documentation

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

Connect EasyBroker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    easybroker: {
      type: "app",
      app: "easybroker",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.easybroker.com/v1/collaborations`,
      headers: {
        "x-authorization": `${this.easybroker.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of Slack

The Pipedream app for Slack enables you to build event-driven workflows that interact with the Slack API. Once you authorize the 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 app for Slack 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_v2: {
      type: "app",
      app: "slack_v2",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack_v2.$auth.oauth_access_token}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo