Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Edits the title of a specific document in Dynalist. See the documentation
Fetches the content of a specific document. See the documentation
Inserts content to a specific document. If the document has existing content, the new content will be appended. 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 Dynalist API enables programmatic access to the powerful outlining and organizing features of Dynalist, a tool designed for structured note-taking and dynamic lists. With Pipedream, you can automate tasks, sync data, and connect Dynalist to other apps and services to enhance productivity. This could include creating new documents, updating lists, and extracting items for reporting or integration with project management tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dynalist: {
type: "app",
app: "dynalist",
}
},
async run({steps, $}) {
const data = {
"token": `${this.dynalist.$auth.api_token}`,
}
return await axios($, {
method: "post",
url: `https://dynalist.io/api/v1/file/list`,
data,
})
},
})