Flowable Jobs API

The Jobs API from Flowable — 28 operation(s) for jobs.

Operations 48

GET /management/deadletter-jobs List deadletter jobs #
POST /management/deadletter-jobs Move a bulk of deadletter jobs. Accepts 'move' and 'moveToHistoryJob' as action. #
GET /management/deadletter-jobs/{jobId} Get a single deadletter job #
POST /management/deadletter-jobs/{jobId} Move a single deadletter job. Accepts 'move' and 'moveToHistoryJob' as action. #
DELETE /management/deadletter-jobs/{jobId} Delete a deadletter job #
GET /management/deadletter-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a deadletter job #
GET /management/history-jobs List history jobs #
GET /management/history-jobs/{jobId} Get a single history job job #
POST /management/history-jobs/{jobId} Execute a history job #
DELETE /management/history-jobs/{jobId} Delete a history job #
GET /management/jobs List jobs #
GET /management/jobs/{jobId} Get a single job #
POST /management/jobs/{jobId} Execute a single job #
DELETE /management/jobs/{jobId} Delete a job #
GET /management/jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a job #
GET /management/suspended-jobs List suspended jobs #
GET /management/suspended-jobs/{jobId} Get a single suspended job #
DELETE /management/suspended-jobs/{jobId} Delete a suspended job #
GET /management/suspended-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a suspended job #
GET /management/timer-jobs List timer jobs #
GET /management/timer-jobs/{jobId} Get a single timer job #
POST /management/timer-jobs/{jobId} Execute a single job action (move or reschedule) #
DELETE /management/timer-jobs/{jobId} Delete a timer job #
GET /management/timer-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a timer job #
GET /cmmn-management/deadletter-jobs List deadletter jobs #
POST /cmmn-management/deadletter-jobs Move a bulk of deadletter jobs. Accepts 'move' and 'moveToHistoryJob' as action. #
GET /cmmn-management/deadletter-jobs/{jobId} Get a single deadletter job #
POST /cmmn-management/deadletter-jobs/{jobId} Move a single deadletter job. Accepts 'move' and 'moveToHistoryJob' as action. #
DELETE /cmmn-management/deadletter-jobs/{jobId} Delete a deadletter job #
GET /cmmn-management/deadletter-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a deadletter job #
GET /cmmn-management/history-jobs List history jobs #
GET /cmmn-management/history-jobs/{jobId} Get a single history job job #
POST /cmmn-management/history-jobs/{jobId} Execute a history job #
DELETE /cmmn-management/history-jobs/{jobId} Delete a history job #
GET /cmmn-management/jobs List jobs #
GET /cmmn-management/jobs/{jobId} Get a single job #
POST /cmmn-management/jobs/{jobId} Execute a single job #
DELETE /cmmn-management/jobs/{jobId} Delete a job #
GET /cmmn-management/jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a job #
GET /cmmn-management/suspended-jobs List suspended jobs #
GET /cmmn-management/suspended-jobs/{jobId} Get a single suspended job #
DELETE /cmmn-management/suspended-jobs/{jobId} Delete a suspended job #
GET /cmmn-management/suspended-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a suspended job #
GET /cmmn-management/timer-jobs List timer jobs #
GET /cmmn-management/timer-jobs/{jobId} Get a single timer job #
POST /cmmn-management/timer-jobs/{jobId} Execute a single job action (move or reschedule) #
DELETE /cmmn-management/timer-jobs/{jobId} Delete a timer job #
GET /cmmn-management/timer-jobs/{jobId}/exception-stacktrace Get the exception stacktrace for a timer job #

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/flowable-jobs-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

flowable-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# flowable / flowəb(ə)l /


    - a compact and highly efficient workflow and Business Process Management (BPM) platform for developers, system admins and business users.

    - a lightning fast, tried and tested BPMN 2 process engine written in Java. It is Apache 2.0 licensed open source, with a committed community.

    - can run embedded in a Java application, or as a service on a server, a cluster, and in the cloud. It integrates perfectly with Spring. With a rich Java and REST API, it is the ideal engine for orchestrating human or system activities.'
  version: v1
  title: Flowable REST Access Tokens Jobs API
  contact:
    name: Flowable
    url: http://www.flowable.org/
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: /flowable-rest/service
tags:
- name: Jobs
paths:
  /management/deadletter-jobs:
    get:
      tags:
      - Jobs
      summary: List deadletter jobs
      description: ''
      operationId: listDeadLetterJobs
      parameters:
      - name: id
        in: query
        description: Only return job with the given id
        required: false
        schema:
          type: string
      - name: processInstanceId
        in: query
        description: Only return jobs part of a process with the given id
        required: false
        schema:
          type: string
      - name: withoutProcessInstanceId
        in: query
        description: If true, only returns jobs without a process instance id set. If false, the withoutProcessInstanceId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: executionId
        in: query
        description: Only return jobs part of an execution with the given id
        required: false
        schema:
          type: string
      - name: processDefinitionId
        in: query
        description: Only return jobs with the given process definition id
        required: false
        schema:
          type: string
      - name: elementId
        in: query
        description: Only return jobs with the given element id
        required: false
        schema:
          type: string
      - name: elementName
        in: query
        description: Only return jobs with the given element name
        required: false
        schema:
          type: string
      - name: handlerType
        in: query
        description: Only return jobs with the given handler type
        required: false
        schema:
          type: string
      - name: handlerTypes
        in: query
        description: Only return jobs which have one of the given job handler type
        required: false
        schema:
          type: string
      - name: executable
        in: query
        description: If true, only return jobs which are executable. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: timersOnly
        in: query
        description: If true, only return jobs which are timers. If false, this parameter is ignored. Cannot be used together with 'messagesOnly'.
        required: false
        schema:
          type: boolean
      - name: messagesOnly
        in: query
        description: If true, only return jobs which are messages. If false, this parameter is ignored. Cannot be used together with 'timersOnly'
        required: false
        schema:
          type: boolean
      - name: withException
        in: query
        description: If true, only return jobs for which an exception occurred while executing it. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: dueBefore
        in: query
        description: Only return jobs which are due to be executed before the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: dueAfter
        in: query
        description: Only return jobs which are due to be executed after the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: exceptionMessage
        in: query
        description: Only return jobs with the given exception message
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return jobs with the given tenantId.
        required: false
        schema:
          type: string
      - name: tenantIdLike
        in: query
        description: Only return jobs with a tenantId like the given value.
        required: false
        schema:
          type: string
      - name: withoutTenantId
        in: query
        description: If true, only returns jobs without a tenantId set. If false, the withoutTenantId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: locked
        in: query
        description: If true, only return jobs which are locked.  If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: unlocked
        in: query
        description: If true, only return jobs which are unlocked. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeId
        in: query
        description: If true, only returns jobs without a scope id set. If false, the withoutScopeId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeType
        in: query
        description: If true, only returns jobs without a scope type set. If false, the withoutScopeType parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - dueDate
          - executionId
          - processInstanceId
          - retries
          - tenantId
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates the requested jobs were returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseJobResponse'
        '400':
          description: Indicates an illegal value has been used in a url query parameter or the both 'messagesOnly' and 'timersOnly' are used as parameters. Status description contains additional details about the error.
      security:
      - basicAuth: []
    post:
      tags:
      - Jobs
      summary: Move a bulk of deadletter jobs. Accepts 'move' and 'moveToHistoryJob' as action.
      description: ''
      operationId: executeDeadLetterJobAction
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkMoveDeadLetterActionRequest'
      responses:
        '204':
          description: Indicates the dead letter jobs where moved. Response-body is intentionally empty.
        '500':
          description: Indicates the an exception occurred while executing the job. The status-description contains additional detail about the error. The full error-stacktrace can be fetched later on if needed.
      security:
      - basicAuth: []
  /management/deadletter-jobs/{jobId}:
    get:
      tags:
      - Jobs
      summary: Get a single deadletter job
      description: ''
      operationId: getDeadletterJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the suspended job exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobResponse'
        '404':
          description: Indicates the requested job does not exist.
      security:
      - basicAuth: []
    post:
      tags:
      - Jobs
      summary: Move a single deadletter job. Accepts 'move' and 'moveToHistoryJob' as action.
      description: ''
      operationId: executeDeadLetterJobAction
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/RestActionRequest'
      responses:
        '204':
          description: Indicates the dead letter job was moved. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
        '500':
          description: Indicates the an exception occurred while executing the job. The status-description contains additional detail about the error. The full error-stacktrace can be fetched later on if needed.
      security:
      - basicAuth: []
    delete:
      tags:
      - Jobs
      summary: Delete a deadletter job
      description: ''
      operationId: deleteDeadLetterJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the job was found and has been deleted. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
      security:
      - basicAuth: []
  /management/deadletter-jobs/{jobId}/exception-stacktrace:
    get:
      tags:
      - Jobs
      summary: Get the exception stacktrace for a deadletter job
      description: ''
      operationId: getDeadLetterJobStacktrace
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the requested job was not found and the stacktrace has been returned. The response contains the raw stacktrace and always has a Content-type of text/plain.
          content:
            '*/*':
              schema:
                type: string
        '404':
          description: Indicates the requested job was not found or the job does not have an exception stacktrace. Status-description contains additional information about the error.
      security:
      - basicAuth: []
  /management/history-jobs:
    get:
      tags:
      - Jobs
      summary: List history jobs
      description: ''
      operationId: listDeadLetterJobs
      parameters:
      - name: id
        in: query
        description: Only return the job with the given id
        required: false
        schema:
          type: string
      - name: withException
        in: query
        description: If true, only return jobs for which an exception occurred while executing it. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: exceptionMessage
        in: query
        description: Only return jobs with the given exception message
        required: false
        schema:
          type: string
      - name: scopeType
        in: query
        description: Only return jobs with the given scope type
        required: false
        schema:
          type: string
      - name: handlerType
        in: query
        description: Only return jobs with the given handler type
        required: false
        schema:
          type: string
      - name: handlerTypes
        in: query
        description: Only return jobs which have one of the given job handler type
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return jobs with the given tenantId.
        required: false
        schema:
          type: string
      - name: tenantIdLike
        in: query
        description: Only return jobs with a tenantId like the given value.
        required: false
        schema:
          type: string
      - name: withoutTenantId
        in: query
        description: If true, only returns jobs without a tenantId set. If false, the withoutTenantId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: lockOwner
        in: query
        description: If true, only return jobs which are owned by the given lockOwner.
        required: false
        schema:
          type: string
      - name: locked
        in: query
        description: If true, only return jobs which are locked.  If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: unlocked
        in: query
        description: If true, only return jobs which are unlocked. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - retries
          - tenantId
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates the requested jobs were returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseHistoryJobResponse'
        '400':
          description: Indicates an illegal value has been used in a url query parameter. Status description contains additional details about the error.
      security:
      - basicAuth: []
  /management/history-jobs/{jobId}:
    get:
      tags:
      - Jobs
      summary: Get a single history job job
      description: ''
      operationId: getHistoryJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the history job exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HistoryJobResponse'
        '404':
          description: Indicates the requested job does not exist.
      security:
      - basicAuth: []
    post:
      tags:
      - Jobs
      summary: Execute a history job
      description: ''
      operationId: executeHistoryJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/RestActionRequest'
      responses:
        '204':
          description: Indicates the job was executed. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
        '500':
          description: Indicates the an exception occurred while executing the job. The status-description contains additional detail about the error. The full error-stacktrace can be fetched later on if needed.
      security:
      - basicAuth: []
    delete:
      tags:
      - Jobs
      summary: Delete a history job
      description: ''
      operationId: deleteHistoryJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the history job was found and has been deleted. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
      security:
      - basicAuth: []
  /management/jobs:
    get:
      tags:
      - Jobs
      summary: List jobs
      description: ''
      operationId: listJobs
      parameters:
      - name: id
        in: query
        description: Only return job with the given id
        required: false
        schema:
          type: string
      - name: processInstanceId
        in: query
        description: Only return jobs part of a process with the given id
        required: false
        schema:
          type: string
      - name: withoutProcessInstanceId
        in: query
        description: If true, only returns jobs without a process instance id set. If false, the withoutProcessInstanceId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: executionId
        in: query
        description: Only return jobs part of an execution with the given id
        required: false
        schema:
          type: string
      - name: processDefinitionId
        in: query
        description: Only return jobs with the given process definition id
        required: false
        schema:
          type: string
      - name: elementId
        in: query
        description: Only return jobs with the given element id
        required: false
        schema:
          type: string
      - name: elementName
        in: query
        description: Only return jobs with the given element name
        required: false
        schema:
          type: string
      - name: handlerType
        in: query
        description: Only return jobs with the given handler type
        required: false
        schema:
          type: string
      - name: handlerTypes
        in: query
        description: Only return jobs which have one of the given job handler type
        required: false
        schema:
          type: string
      - name: timersOnly
        in: query
        description: If true, only return jobs which are timers. If false, this parameter is ignored. Cannot be used together with 'messagesOnly'.
        required: false
        schema:
          type: boolean
      - name: messagesOnly
        in: query
        description: If true, only return jobs which are messages. If false, this parameter is ignored. Cannot be used together with 'timersOnly'
        required: false
        schema:
          type: boolean
      - name: withException
        in: query
        description: If true, only return jobs for which an exception occurred while executing it. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: dueBefore
        in: query
        description: Only return jobs which are due to be executed before the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: dueAfter
        in: query
        description: Only return jobs which are due to be executed after the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: exceptionMessage
        in: query
        description: Only return jobs with the given exception message
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return jobs with the given tenantId.
        required: false
        schema:
          type: string
      - name: tenantIdLike
        in: query
        description: Only return jobs with a tenantId like the given value.
        required: false
        schema:
          type: string
      - name: withoutTenantId
        in: query
        description: If true, only returns jobs without a tenantId set. If false, the withoutTenantId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: locked
        in: query
        description: If true, only return jobs which are locked.  If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: unlocked
        in: query
        description: If true, only return jobs which are unlocked. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeId
        in: query
        description: If true, only returns jobs without a scope id set. If false, the withoutScopeId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeType
        in: query
        description: If true, only returns jobs without a scope type set. If false, the withoutScopeType parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - dueDate
          - executionId
          - processInstanceId
          - retries
          - tenantId
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates the requested jobs were returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseJobResponse'
        '400':
          description: Indicates an illegal value has been used in a url query parameter or the both 'messagesOnly' and 'timersOnly' are used as parameters. Status description contains additional details about the error.
      security:
      - basicAuth: []
  /management/jobs/{jobId}:
    get:
      tags:
      - Jobs
      summary: Get a single job
      description: ''
      operationId: getJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the job exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobResponse'
        '404':
          description: Indicates the requested job does not exist.
      security:
      - basicAuth: []
    post:
      tags:
      - Jobs
      summary: Execute a single job
      description: ''
      operationId: executeJobAction
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        $ref: '#/components/requestBodies/RestActionRequest'
      responses:
        '204':
          description: Indicates the job was executed. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
        '500':
          description: Indicates the an exception occurred while executing the job. The status-description contains additional detail about the error. The full error-stacktrace can be fetched later on if needed.
      security:
      - basicAuth: []
    delete:
      tags:
      - Jobs
      summary: Delete a job
      description: ''
      operationId: deleteJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Indicates the job was found and has been deleted. Response-body is intentionally empty.
        '404':
          description: Indicates the requested job was not found.
      security:
      - basicAuth: []
  /management/jobs/{jobId}/exception-stacktrace:
    get:
      tags:
      - Jobs
      summary: Get the exception stacktrace for a job
      description: ''
      operationId: getJobStacktrace
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the requested job was not found and the stacktrace has been returned. The response contains the raw stacktrace and always has a Content-type of text/plain.
          content:
            '*/*':
              schema:
                type: string
        '404':
          description: Indicates the requested job was not found or the job does not have an exception stacktrace. Status-description contains additional information about the error.
      security:
      - basicAuth: []
  /management/suspended-jobs:
    get:
      tags:
      - Jobs
      summary: List suspended jobs
      description: ''
      operationId: listSuspendedJobs
      parameters:
      - name: id
        in: query
        description: Only return job with the given id
        required: false
        schema:
          type: string
      - name: processInstanceId
        in: query
        description: Only return jobs part of a process with the given id
        required: false
        schema:
          type: string
      - name: withoutProcessInstanceId
        in: query
        description: If true, only returns jobs without a process instance id set. If false, the withoutProcessInstanceId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: executionId
        in: query
        description: Only return jobs part of an execution with the given id
        required: false
        schema:
          type: string
      - name: processDefinitionId
        in: query
        description: Only return jobs with the given process definition id
        required: false
        schema:
          type: string
      - name: elementId
        in: query
        description: Only return jobs with the given element id
        required: false
        schema:
          type: string
      - name: elementName
        in: query
        description: Only return jobs with the given element name
        required: false
        schema:
          type: string
      - name: handlerType
        in: query
        description: Only return jobs with the given handler type
        required: false
        schema:
          type: string
      - name: handlerTypes
        in: query
        description: Only return jobs which have one of the given job handler type
        required: false
        schema:
          type: string
      - name: executable
        in: query
        description: If true, only return jobs which are executable. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: timersOnly
        in: query
        description: If true, only return jobs which are timers. If false, this parameter is ignored. Cannot be used together with 'messagesOnly'.
        required: false
        schema:
          type: boolean
      - name: messagesOnly
        in: query
        description: If true, only return jobs which are messages. If false, this parameter is ignored. Cannot be used together with 'timersOnly'
        required: false
        schema:
          type: boolean
      - name: withException
        in: query
        description: If true, only return jobs for which an exception occurred while executing it. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: dueBefore
        in: query
        description: Only return jobs which are due to be executed before the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: dueAfter
        in: query
        description: Only return jobs which are due to be executed after the given date. Jobs without duedate are never returned using this parameter.
        required: false
        schema:
          type: string
          format: date-time
      - name: exceptionMessage
        in: query
        description: Only return jobs with the given exception message
        required: false
        schema:
          type: string
      - name: tenantId
        in: query
        description: Only return jobs with the given tenantId.
        required: false
        schema:
          type: string
      - name: tenantIdLike
        in: query
        description: Only return jobs with a tenantId like the given value.
        required: false
        schema:
          type: string
      - name: withoutTenantId
        in: query
        description: If true, only returns jobs without a tenantId set. If false, the withoutTenantId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: locked
        in: query
        description: If true, only return jobs which are locked.  If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: unlocked
        in: query
        description: If true, only return jobs which are unlocked. If false, this parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeId
        in: query
        description: If true, only returns jobs without a scope id set. If false, the withoutScopeId parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: withoutScopeType
        in: query
        description: If true, only returns jobs without a scope type set. If false, the withoutScopeType parameter is ignored.
        required: false
        schema:
          type: boolean
      - name: sort
        in: query
        description: Property to sort on, to be used together with the order.
        required: false
        schema:
          type: string
          enum:
          - id
          - dueDate
          - executionId
          - processInstanceId
          - retries
          - tenantId
      - name: order
        in: query
        description: The sort order, either 'asc' or 'desc'. Defaults to 'asc'.
        required: false
        schema:
          type: string
      - name: start
        in: query
        description: Index of the first row to fetch. Defaults to 0.
        required: false
        schema:
          type: integer
      - name: size
        in: query
        description: Number of rows to fetch, starting from start. Defaults to 10.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Indicates the requested jobs were returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseJobResponse'
        '400':
          description: Indicates an illegal value has been used in a url query parameter or the both 'messagesOnly' and 'timersOnly' are used as parameters. Status description contains additional details about the error.
      security:
      - basicAuth: []
  /management/suspended-jobs/{jobId}:
    get:
      tags:
      - Jobs
      summary: Get a single suspended job
      description: ''
      operationId: getSuspendedJob
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Indicates the suspended job exists and is returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobResponse'
        '404':
          description: Indicates the requested job does not exist.
      security:
      - basicAuth: []
    delete:
      tags:
      - Jobs
      summary: Delete a suspended

# --- truncated at 32 KB (89 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/flowable/refs/heads/main/openapi/flowable-jobs-api-openapi.yml