Chat app that's built for work. Messaging, video collaboration, task management and productivity.
Emit new event when a new channel message is received. See the documentation
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a new direct message is received. See the documentation
Emit new event for each command posted to one or more channels in a Discord server
The Zoho Cliq API allows you to automate and integrate your team communication within Zoho Cliq. With this API, you can create bots to send messages, manage channels and users, and streamline notifications to your team about events from other applications or services. Using Pipedream, you can harness these capabilities to create powerful workflows that trigger actions within Zoho Cliq or react to events happening in Cliq to perform tasks in other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_cliq: {
type: "app",
app: "zoho_cliq",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_cliq.$auth.base_api_uri}/api/v2/users`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_cliq.$auth.oauth_access_token}`,
},
})
},
})
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`,
},
})
},
})