Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Create meeting notes in Small Improvements. See the documentation
List all users from Small Improvements. 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 Small Improvements API allows for the automation of feedback, performance reviews, and goals within your organization. It enables interaction with Small Improvements' features, such as requesting feedback, managing users, and reviewing objectives. With Pipedream, you can harness this API to create seamless workflows that trigger actions across various applications, reacting to events in real-time, processing data, and automating repetitive tasks without writing any code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
small_improvements: {
type: "app",
app: "small_improvements",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.small-improvements.com/api/v2/users/me`,
headers: {
Authorization: `Bearer ${this.small_improvements.$auth.api_token}`,
"Accept": `application/json`,
},
})
},
})