Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Adds a new prospect to a list in Klenty. See the documentation
Starts a cadence in Klenty for a specific prospect. See the documentation
Updates an existing prospect's information in Klenty. 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 Klenty API enables automation of your sales engagement by integrating with Pipedream. With this API, you can sync leads, automate email campaigns, and manage tasks without manual intervention, creating a seamless sales workflow. By leveraging Pipedream's serverless execution model, you can set up custom triggers, actions, and data transformations between Klenty and various other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klenty: {
type: "app",
app: "klenty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.klenty.com/apis/v1/user/${this.klenty.$auth.username}/lists`,
headers: {
"x-API-key": `${this.klenty.$auth.api_key}`,
},
params: {
listName: `YOUR_LIST_NAME`,
},
})
},
})