with Systeme.io and Webvizio?
Emit new event when a new project is created. See the documentation
Emit new event when a project is updated. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
systeme_io: {
type: "app",
app: "systeme_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.systeme.io/api/contacts`,
headers: {
"x-api-key": `${this.systeme_io.$auth.api_key}`,
},
})
},
})
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,
})
},
})