Decision Journal is an app for keeping track of and improving your decision making.
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a new decision is created. See the documentation
Emit new event for each command posted to one or more channels in a Discord server
Creates a new decision in the Decision Journal. See the documentation
Creates a review for a decision in Decision Journal. See the documentation
Send a simple or structured message (using embeds) to a Discord channel
The Decision Journal API allows for the systematic tracking of decisions over time, providing a structured way to log and evaluate past choices. By integrating with Pipedream, users can automate workflows to capture decisions from various sources, set reminders for review, analyze decision patterns, and sync with other productivity tools. This supports improved decision-making processes and personal growth.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
decision_journal: {
type: "app",
app: "decision_journal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.decisionjournalapp.com/v1/decisions`,
headers: {
Authorization: `Bearer ${this.decision_journal.$auth.oauth_access_token}`,
},
})
},
})
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`,
},
})
},
})