Gist

Build personal relationships at scale. Gist offers live chat, email marketing automation, event tracking, and more.

Integrate the Gist API with the Discord API

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

Add Tag To Existing Contacts with Gist API on New Message (Instant) from Discord API
Discord + Gist
 
Try it
Create Or Update Contact with Gist API on New Message (Instant) from Discord API
Discord + Gist
 
Try it
Get Contact with Gist API on New Message (Instant) from Discord API
Discord + Gist
 
Try it
Remove Tag From Existing Contact with Gist API on New Message (Instant) from Discord API
Discord + Gist
 
Try it
Add Tag To Existing Contacts with Gist API on Message Deleted (Instant) from Discord API
Discord + Gist
 
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 Contact from the Gist API

Emit new event when a new contact is created

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

Emit new event for each new member added to a guild

 
Try it
Add Tag To Existing Contacts with the Gist API

This Action lets you assign a tag to multiple contacts at once. If the tag does not already exist it will be created for you. See docs

 
Try it
Create Or Update Contact with the Gist API

Create or update a contact in Gist See docs

 
Try it
Get Contact with the Gist API

Find a Contact See docs

 
Try it
Remove Tag From Existing Contact with the Gist API

Remove a tag from an existing contact or contacts. See docs

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it

Overview of Gist

The Gist API lets you create, read, update, and delete gists. With the Gist
API, you can manage your code snippets on GetGist.

Here are some examples of what you can build with the Gist API:

  • Create new gists
  • Read existing gists
  • Update existing gists
  • Delete existing gists

Connect Gist

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: {
    gist: {
      type: "app",
      app: "gist",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.getgist.com/teammates`,
      headers: {
        Authorization: `Bearer ${this.gist.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

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