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 Zamzar API

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

Create Content File with Zamzar API on New Message (Instant) from Discord API
Discord + Zamzar
 
Try it
Retrieve Job with Zamzar API on New Message (Instant) from Discord API
Discord + Zamzar
 
Try it
Start Job From File with Zamzar API on New Message (Instant) from Discord API
Discord + Zamzar
 
Try it
Create Content File with Zamzar API on Message Deleted (Instant) from Discord API
Discord + Zamzar
 
Try it
Create Content File with Zamzar API on New Command Received (Instant) from Discord API
Discord + Zamzar
 
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 Conversion Job from the Zamzar API

Emit new event when a conversion job has completed. See the documentation

 
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 File from the Zamzar API

Emit new event when a file has been converted successfully. See the documentation

 
Try it
Create Content File with the Zamzar API

Creates a file from the provided content. See the documentation

 
Try it
Retrieve Job with the Zamzar API

Finds the file that has been processed under the specified job id. See the documentation

 
Try it
Start Job From File with the Zamzar API

Starts a conversion job and upload a source file in a single request. See the documentation

 
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

Overview of Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

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

Overview of Zamzar

The Zamzar API on Pipedream provides powerful file conversion capabilities, allowing you to easily automate the process of converting files between different formats. With Pipedream's serverless platform, you can set up workflows that trigger conversions, handle the completed files, and integrate with other services for a seamless automation experience. From document conversion for data analysis to prepping media files for different platforms, Zamzar's API coupled with Pipedream's robust functionality opens up a world of possibilities for streamlining tasks.

Connect Zamzar

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: {
    zamzar: {
      type: "app",
      app: "zamzar",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zamzar.com/v1/account`,
      auth: {
        username: `${this.zamzar.$auth.api_key}`,
        password: ``,
      },
    })
  },
})