Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Initiates a phone call to a lead and establishes the connection with the first available agent. 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 Convolo.ai API enables automation of lead capturing and conversation management. With this API, you can programmatically access and manipulate your Convolo leads, manage call schedules, and track conversation outcomes. Integrating Convolo.ai with Pipedream allows you to connect your lead management process with other apps and services to create a seamless workflow, enhancing your ability to respond quickly to potential customers and organize your sales funnel efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
convolo_ai: {
type: "app",
app: "convolo_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.convolo.ai/rest/v1/ext/add_call_api/ `,
params: {
widget_key: `${this.convolo_ai.$auth.widget_key}`,
api_key: `${this.convolo_ai.$auth.api_key}`,
lc_number: `+14083726197`,
},
})
},
})