Celonis Job Execution Group API

The Job Execution Group API retrieves job execution groups.

Operations 1

GET /api/jobs/executions/groups Get execution groups #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/celonis-job-execution-group-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

celonis-job-execution-group-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Celonis Machine Learning Workbench Job Execution Group API
  description: Documentation for the external Machine Learning APIs. These APIs allow you to trigger executions, manage resources, and more. To access the APIs, a Bearer API Key and a team-specific AppKey must be passed in the header.
  version: v1.0
servers:
- description: Default Server URL
  url: /
security:
- authorization: []
tags:
- name: Job Execution Group
  description: The Job Execution Group API retrieves job execution groups.
paths:
  /api/jobs/executions/groups:
    get:
      tags:
      - Job Execution Group
      summary: Get execution groups
      operationId: getExecutionGroups
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobExecutionGroup'
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/FrontendHandledBackendError'
        '403':
          description: Forbidden
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ExceptionReference'
components:
  schemas:
    ExceptionReference:
      type: object
      properties:
        reference:
          type: string
        message:
          type: string
        shortMessage:
          type: string
    JobExecutionGroup:
      type: object
      properties:
        jobName:
          type: string
        lastJobExecutionId:
          type: string
        lastJobExecutionStatus:
          type: string
          enum:
          - CREATED
          - STARTED
          - RUNNING
          - COMPLETED
          - FAILED
          - CANCELED
        lastJobExecutionStartedDate:
          type: string
          format: date-time
    FrontendHandledBackendError:
      type: object
      properties:
        frontendErrorKey:
          type: string
        errorInformation: {}