with Elevio and GoZen Growth?
Emit new event any time a new article is created. See the documentation
Emit new event each time new feedback is submitted by a user via the elevio widget. See the documentation
Creates a new article in the Elevio knowledge base. See the documentation
Create or update a contact a on Gozen Growth. See the documentation
Deletes an existing article from the Elevio knowledge base. See the documentation
Updates an existing article in the Elevio knowledge base. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elevio: {
type: "app",
app: "elevio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.elev.io/v1/articles`,
headers: {
Authorization: `Bearer ${this.elevio.$auth.api_token}`,
"x-api-key": `${this.elevio.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gozen_growth: {
type: "app",
app: "gozen_growth",
}
},
async run({steps, $}) {
const data = {
"contact" :{
"first_name" : "John",
"email_address" : "john@example.com"
}
}
return await axios($, {
method: "post",
url: `${this.gozen_growth.$auth.webhook_url}`,
headers: {
"Authorization": `${this.gozen_growth.$auth.authentication_token}`,
},
data,
})
},
})