Webvizio is a free website feedback tool & website review software designed for managers & teams to easily collaborate on website revisions in real time.
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a new project is created. See the documentation
Emit new event for each command posted to one or more channels in a Discord server
The Webvizio API provides a platform for website project management, enabling users to manage tasks, collaborate on web development projects, and review website changes in real-time. With Pipedream, you can harness this API to automate feedback loops, sync tasks with other project management tools, and create a seamless integration between your website updates and your project tracking system.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webvizio: {
type: "app",
app: "webvizio",
}
},
async run({steps, $}) {
const data = {
"url": `{{your_webhook_url}}`, //I.E. https://app.webvizio.com/api/v1/webhook
"event": `{{your_event}}`, //i.e. task.updated
}
return await axios($, {
method: "POST",
url: `https://app.webvizio.com/api/v1/webhook`,
headers: {
Authorization: `Bearer ${this.webvizio.$auth.api_token}`,
},
data,
})
},
})
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`,
},
})
},
})