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 when a new project is created. See the documentation
Emit new event when a project is updated. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
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,
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})