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 each time a client is updated in RiskAdvisor. See the documentation
Emit new event for each command posted to one or more channels in a Discord server
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 RiskAdvisor API offers a way to integrate insurance advisory services into your applications seamlessly. By leveraging this API within Pipedream, you can automate the process of obtaining insurance quotes, processing claims, and providing personalized insurance advice. Pipedream's serverless execution environment allows you to create workflows that react to various triggers (such as webhooks, emails, or schedules) and interact with the RiskAdvisor API to carry out tasks without manual intervention. This can streamline operations for insurance agencies, fintech apps, or any business that needs to integrate insurance-related services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
riskadvisor: {
type: "app",
app: "riskadvisor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.riskadvisor.insure/api/clients`,
headers: {
Authorization: `Bearer ${this.riskadvisor.$auth.api_token}`,
},
})
},
})