Pipefy

Process Management, Workflow Management Software

Integrate the Pipefy API with the Discord API

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

Create Card with Pipefy API on New Message from Discord API
Discord + Pipefy
 
Try it
Create Pipe with Pipefy API on New Message from Discord API
Discord + Pipefy
 
Try it
Create Table Record with Pipefy API on New Message from Discord API
Discord + Pipefy
 
Try it
Delete Card with Pipefy API on New Message from Discord API
Discord + Pipefy
 
Try it
Get All Cards with Pipefy API on New Message from Discord API
Discord + Pipefy
 
Try it
Card Created (Instant) from the Pipefy API

Emits an event for each new card created in a Pipe.

 
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
Card Done (Instant) from the Pipefy API

Emits an event each time a card is moved to Done a Pipe.

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
Card Expired from the Pipefy API

Emits an event each time a card becomes expired in a Pipe.

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Create Card with the Pipefy API

Create a new Card in a Pipe. See the docs here

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it
Create Pipe with the Pipefy API

Creates a pipe. See the docs here

 
Try it

Overview of Pipefy

Using the Pipefy API, it is possible to build powerful workflows that help to streamline the entire process of managing any given task or process. The API provides access to all of Pipefy’s features, allowing developers to create custom-built workflows that are tailored for their specific needs.

With Pipefy’s API, developers can take advantage of the following:

  • Create and manage customized pipelines
  • Automatically trigger events between different phases
  • Track progress and milestones
  • Establish custom notifications
  • Manage resources

Examples of what you can build with the Pipefy API:

  • A workflow to oversee the recruitment process, from applicant submission to onboarding.
  • A workflow to organize the marketing team’s daily, weekly and monthly tasks.
  • A workflow to oversee the development of software products, from planning to the release.
  • An automated system for processing customer requests and complaints.
  • A workflow to manage product releases from inception to launch.

Connect Pipefy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pipefy: {
      type: "app",
      app: "pipefy",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{ me { name } }`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.pipefy.com/graphql`,
      headers: {
        Authorization: `Bearer ${this.pipefy.$auth.token}`,
      },
      data,
    })
  },
})

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