All In One Course Creation, Delivery & Marketing Platform
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a course is completed. See the docs here
Emit new event for each command posted to one or more channels in a Discord server
Emit new event when a funnel is created. See the docs here
The Zenler API lets you tap into your online course platform to automate tasks, streamline student engagement, and track course performance. By harnessing the power of the Zenler API on Pipedream, you can create dynamic serverless workflows that respond to course interactions, manage users, and analyze educational content effectiveness, all in real-time. Whether you're looking to enhance the learning experience, or make your course administration more efficient, the Zenler API on Pipedream offers the tools to make it happen.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenler: {
type: "app",
app: "zenler",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newzenler.com/api/v1/users`,
headers: {
"X-API-Key": `${this.zenler.$auth.api_key}`,
"X-Account-Name": `${this.zenler.$auth.account_name}`,
},
})
},
})
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`,
},
})
},
})