Events.com Workflow Job Scheduler Controller API

The workflow-job-scheduler-controller API from Events.com — 2 operation(s) for workflow-job-scheduler-controller.

Operations 2

POST /workflow/api/v1/scheduleJob #
POST /workflow/api/v1/deleteJob #

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/eventscom-workflow-job-scheduler-controller-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

eventscom-workflow-job-scheduler-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Workflow Job Scheduler Controller API
  version: '1.0'
  description: 'Operations tagged workflow-job-scheduler-controller across 2 of this provider''s published API definitions: eventscom-datagol-platform-openapi.yml, eventscom-workflow-job-scheduler-controller-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://datagol-be.events.com
  description: Generated server url
tags:
- name: workflow-job-scheduler-controller
paths:
  /workflow/api/v1/scheduleJob:
    post:
      tags:
      - workflow-job-scheduler-controller
      operationId: scheduleJob
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WorkflowJobSchedulerDTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
    servers:
    - url: https://datagol-be.events.com
      description: Generated server url
  /workflow/api/v1/deleteJob:
    post:
      tags:
      - workflow-job-scheduler-controller
      operationId: scheduleJob_1
      parameters:
      - name: jobKey
        in: query
        required: true
        schema:
          type: string
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
    servers:
    - url: https://datagol-be.events.com
      description: Generated server url
components:
  schemas:
    RequestDTO:
      type: object
      properties:
        credential:
          $ref: '#/components/schemas/EventCredentialDTO'
        connectorType:
          type: string
        operation:
          type: string
        resource:
          type: string
        limit:
          type: integer
          format: int32
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/EventRequestParameterDTO'
    SaasxlHttpResponseObject:
      type: object
      properties:
        data:
          type: object
        statusCode:
          type: integer
          format: int32
        success:
          type: boolean
        version:
          type: string
        date:
          type: string
          format: date-time
        error:
          $ref: '#/components/schemas/ErrorMessage'
    EventRequestParameterDTO:
      type: object
      properties:
        type:
          type: string
        data:
          type: object
          additionalProperties:
            type: object
    RuleDTO:
      type: object
      properties:
        field:
          type: string
        value:
          type: object
        operator:
          type: string
        rules:
          type: array
          items:
            $ref: '#/components/schemas/RuleDTO'
        combinator:
          type: string
        not:
          type: boolean
        valueSource:
          type: string
    ResponseData:
      type: object
      properties:
        request:
          $ref: '#/components/schemas/RequestDTO'
        outputData:
          $ref: '#/components/schemas/SaasxlHttpResponseObject'
    WorkflowJobSchedulerDTO:
      type: object
      properties:
        event:
          $ref: '#/components/schemas/EventDTO'
        waitTimeInSeconds:
          type: integer
          format: int64
    EventConnectorInfoDTO:
      type: object
      properties:
        id:
          type: string
        connectorType:
          type: string
        path:
          type: string
        method:
          type: string
        credential:
          $ref: '#/components/schemas/EventCredentialDTO'
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/ParameterDTO'
        operationMetaData:
          $ref: '#/components/schemas/OperationMetaData'
        configJsFn:
          type: string
        responseParserFn:
          type: string
        responseData:
          type: array
          items:
            $ref: '#/components/schemas/ResponseData'
    EventNodeDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        nodeType:
          type: string
        relationToPreviousNode:
          type: string
        rule:
          $ref: '#/components/schemas/RuleDTO'
        connectorInfos:
          type: array
          items:
            $ref: '#/components/schemas/EventConnectorInfoDTO'
        startConnectorInfo:
          type: string
        status:
          type: string
        startTimeInMillis:
          type: integer
          format: int64
        endTimeInMillis:
          type: integer
          format: int64
        dataContext:
          type: object
          additionalProperties:
            type: array
            items:
              type: object
              additionalProperties:
                type: object
        errorMessage:
          $ref: '#/components/schemas/ErrorMessage'
        waitTimeInSeconds:
          type: integer
          format: int64
    EventCredentialDTO:
      type: object
      properties:
        credentialType:
          type: string
        config:
          type: array
          items:
            $ref: '#/components/schemas/EventRequestParameterDTO'
    EventDTO:
      type: object
      properties:
        currentNode:
          type: string
        destinationNode:
          type: string
        connections:
          type: array
          items:
            $ref: '#/components/schemas/EventConnectionDTO'
        nodes:
          type: array
          items:
            $ref: '#/components/schemas/EventNodeDTO'
        workFlowId:
          type: integer
          format: int64
        userId:
          type: integer
          format: int64
        companyId:
          type: integer
          format: int64
        requestId:
          type: string
        status:
          type: string
        startTimeInMillis:
          type: integer
          format: int64
        endTimeInMillis:
          type: integer
          format: int64
        workspaceId:
          type: string
    SaasxlResponseDTOObject:
      type: object
      properties:
        success:
          type: boolean
        version:
          type: string
        date:
          type: string
          format: date-time
        error:
          $ref: '#/components/schemas/ErrorMessage'
        data:
          type: object
    ErrorMessage:
      type: object
      properties:
        statusCode:
          type: integer
          format: int32
        requestId:
          type: string
        message:
          type: object
        details:
          type: object
        errorCodes:
          type: array
          items:
            type: string
    ParameterDTO:
      type: object
      properties:
        type:
          type: string
        data:
          type: object
          additionalProperties:
            type: object
    EventConnectionDTO:
      type: object
      properties:
        node:
          type: string
        nextNodes:
          type: array
          items:
            type: string
    OperationMetaData:
      type: object
      properties:
        httpMethod:
          type: string
        baseUrl:
          type: string
        operationUrl:
          type: string
        contentType:
          type: string
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/EventRequestParameterDTO'
  securitySchemes:
    s_jwt:
      type: http
      description: Jwt Token
      scheme: bearer
      bearerFormat: JWT
x-refined-from:
- eventscom-datagol-platform-openapi.yml
- eventscom-workflow-job-scheduler-controller-api-openapi.yml