Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Sends user event data to Amplitude for analytics. See the documentation
Send a simple or structured message (using embeds) to a Discord channel
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 Amplitude API empowers you to sync and analyze product data within Amplitude's analytics platform. With Pipedream, you can automate interactions with the Amplitude API to create complex workflows. Send event and user data, query metrics, and automate cohort analysis, which can streamline your data science and product development processes. Integrating Amplitude with Pipedream allows you to connect this data to hundreds of other services for enhanced analytics, marketing automation, and personalized customer experiences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
amplitude: {
type: "app",
app: "amplitude",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://{{custom_fields.region}/sessions/average`,
auth: {
username: `${this.amplitude.$auth.api_key}`,
password: `${this.amplitude.$auth.api_secret}`,
},
params: {
"p": `platform`,
start: `20210601`,
end: `20210630`,
},
})
},
})