with AttractWell and Elevio?
Emit new event when a contact becomes a new member of a vault.
Emit new event any time a new article is created. See the documentation
Emit new event when a new registration for an event takes place.
Emit new event each time new feedback is submitted by a user via the elevio widget. See the documentation
Emit new event when a lead is gained from a landing page.
Creates a new article in the Elevio knowledge base. See the documentation
Creates or updates a contact with the provided identification and contact details.
Deletes an existing article from the Elevio knowledge base. See the documentation
Approves, rejects, or unapproves a lesson in the AttractWell system based on the selected status.
Updates an existing article in the Elevio knowledge base. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attractwell: {
type: "app",
app: "attractwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attractwell.com/api/v1/campaigns`,
headers: {
Authorization: `Bearer ${this.attractwell.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})