Webvizio is a free website feedback tool & website review software designed for managers & teams to easily collaborate on website revisions in real time.
Go to siteThe 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,
})
},
})
Automate Feedback Collection to Task Management: Gather feedback from Webvizio and automatically create tasks in a connected project management tool like Trello or Asana. This ensures that web feedback translates directly into actionable tasks.
Sync Comments with Communication Platforms: When new comments are added in Webvizio, trigger notifications and share the details in communication platforms such as Slack or Microsoft Teams. This keeps the entire team instantly informed about new developments or required changes.
Periodic Website Review and Reporting: Set up a scheduled Pipedream workflow that periodically checks for website changes or comments in Webvizio, compiles a report, and emails it to stakeholders using a service like SendGrid. This ensures regular updates to the team or clients about the status of the website project.
Emit new event when a new project is created. See the documentation
Emit new event when a project is updated. See the documentation
Webvizio uses API keys for authentication. When you connect your Webvizio account, Pipedream securely stores the keys so you can easily authenticate to Webvizio APIs in both code and no-code steps.