Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Integrate the Discord API with the Pipedrive API

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

Add Activity with Pipedrive API on New Message from Discord API
Discord + Pipedrive
 
Try it
Add Deal with Pipedrive API on New Message from Discord API
Discord + Pipedrive
 
Try it
Add Note with Pipedrive API on New Message (Instant) from Discord API
Discord + Pipedrive
 
Try it
Add Organization with Pipedrive API on New Message from Discord API
Discord + Pipedrive
 
Try it
Add Person with Pipedrive API on New Message from Discord API
Discord + Pipedrive
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Add Activity with the Pipedrive API

Adds a new activity. Includes more_activities_scheduled_in_context property in response's additional_data which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). See the Pipedrive API docs for Activities here. For info on adding an activity in Pipedrive

 
Try it
Add Deal with the Pipedrive API

Adds a new deal. See the Pipedrive API docs for Deals here

 
Try it
Add Note with the Pipedrive API

Adds a new note. For info on adding an note in Pipedrive

 
Try it
Add Organization with the Pipedrive API

Adds a new organization. See the Pipedrive API docs for Organizations here

 
Try it
Add Person with the Pipedrive API

Adds a new person. See the Pipedrive API docs for People here

 
Try it

Overview of Discord

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

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})

Connect Pipedrive

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: {
    pipedrive: {
      type: "app",
      app: "pipedrive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.pipedrive.$auth.api_domain}/users/me`,
      headers: {
        Authorization: `Bearer ${this.pipedrive.$auth.oauth_access_token}`,
      },
    })
  },
})