The Celonis Execution Management System helps businesses maximize execution capacity across the enterprise.
The Celonis EMS API allows you to harness the power of process mining and execution management within your workflows. Integrated within Pipedream, this API enables you to automate actions based on process insights, such as identifying bottlenecks and initiating corrective measures. You can trigger workflows from Celonis data, send data back into Celonis for deeper analysis, or even mix data from different sources for rich, actionable insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
celonis_ems: {
type: "app",
app: "celonis_ems",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.celonis_ems.$auth.team}.${this.celonis_ems.$auth.cluster}.celonis.cloud/intelligence/api/knowledge-models`,
headers: {
Authorization: `Bearer ${this.celonis_ems.$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.