The Celonis Execution Management System helps businesses maximize execution capacity across the enterprise.
Go to siteThe 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}`,
},
})
},
})
Automate Ticket Creation in Jira based on Process Findings: When Celonis identifies a deviation or inefficiency in a process, like longer lead times in procurement, a Pipedream workflow can automatically create a ticket in Jira to address the issue, ensuring timely resolution and continuous process optimization.
Sync Process Analytics with Google Sheets: Regularly export key process metrics from Celonis to a Google Sheet for reporting and analysis. This could include data like process cycle times or compliance rates, allowing for a more accessible view for stakeholders who prefer quick looks over spreadsheets.
Slack Alerts for Critical Process Changes: Set up a workflow that listens for critical event changes within Celonis, such as a drop in supplier performance or an increase in operational risk, and instantaneously sends a message to a designated Slack channel to alert the relevant team members for immediate action.
Celonis EMS uses API keys for authentication. When you connect your Celonis EMS account, Pipedream securely stores the keys so you can easily authenticate to Celonis EMS APIs in both code and no-code steps.
To retrieve your API Key,
Your team is 1234
and your cluster is ABCD
if your Celonis EMS URL is https://1234.ABCD.celonis.cloud