Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a headless import has issues and needs a review
Emit new event for each command posted to one or more channels in a Discord server
Emits a new event when a headless import has been completed successfully.
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.
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`,
},
})
},
})
The Dromo API is a logistics and shipment tracking service that provides real-time data on shipments across carriers. With this API, you can tap into a vast network of shipping information, automate tracking processes, send notifications on shipment updates, and integrate your logistics data with other business systems. On Pipedream, you can create workflows that leverage the Dromo API to connect with various apps, automate shipment tracking updates, and streamline logistics processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dromo: {
type: "app",
app: "dromo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.dromo.io/api/v1/uploads/`,
headers: {
"X-Dromo-License-Key": `${this.dromo.$auth.api_key}`,
},
})
},
})