More Customers, Less Support. Reduce Customer Effort with Elevio
Emit new event any time a new article is created. See the documentation.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
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.
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}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.