Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Enrich a list of contacts in Dropcontact. See the documentation
Retrieve the enriched contacts of a request in Dropcontact. 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 Dropcontact API on Pipedream allows you to enrich and clean contact data dynamically within a serverless workflow. It can find, verify, and correct email addresses, providing additional information like company details and social network profiles. Integrating Dropcontact into Pipedream workflows enables automated data enhancement tasks that can trigger actions in other apps for marketing, sales, or CRM purposes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dropcontact: {
type: "app",
app: "dropcontact",
}
},
async run({steps, $}) {
const data = {
"data": [
{"email": "sample_email1@domain.com"},
{"first_name": "SampleFirstName", "last_name": "SampleLastName", "website": "samplewebsite.com"},
{"first_name": "SampleFirstName2", "last_name": "SampleLastName2", "email": "sample_email2@domain.com"}
],
}
return await axios($, {
method: "post",
url: `https://api.dropcontact.io/batch`,
headers: {
"Content-Type": `application/json`,
"X-Access-Token": `${this.dropcontact.$auth.api_key}`,
},
data,
})
},
})