diff --git a/.husky/pre-commit b/.husky/pre-commit
index 36af219892f..7118cd9ae4f 100755
--- a/.husky/pre-commit
+++ b/.husky/pre-commit
@@ -1,4 +1,6 @@
#!/bin/sh
+# Before adding version-manager code here, read https://typicode.github.io/husky/how-to.html#solution.
+
. "$(dirname "$0")/_/husky.sh"
npx lint-staged
diff --git a/api/administration-sm/generation-strategy.js b/api/administration-sm/generation-strategy.js
index 3d0908043a2..bcb96fc2b6c 100644
--- a/api/administration-sm/generation-strategy.js
+++ b/api/administration-sm/generation-strategy.js
@@ -1,21 +1,17 @@
const { makeServerDynamic } = require("../make-server-dynamic");
const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge");
-const outputDir = "docs/apis-tools/administration-sm-api/specifications";
-const specFile = "api/administration-sm/administration-sm-openapi.yaml";
-
-function preGenerateDocs() {
- makeServerDynamic(specFile);
+function preGenerateDocs(config) {
+ makeServerDynamic(config.specPath);
}
-function postGenerateDocs() {
+function postGenerateDocs(config) {
removeDuplicateVersionBadge(
- `${outputDir}/administration-api-self-managed.info.mdx`
+ `${config.outputDir}/administration-api-self-managed.info.mdx`
);
}
module.exports = {
- outputDir,
preGenerateDocs,
postGenerateDocs,
};
diff --git a/api/administration-sm/version-8.6/administration-sm-openapi.yaml b/api/administration-sm/version-8.6/administration-sm-openapi.yaml
new file mode 100644
index 00000000000..4e5c73fef9f
--- /dev/null
+++ b/api/administration-sm/version-8.6/administration-sm-openapi.yaml
@@ -0,0 +1,249 @@
+openapi: 3.0.0
+components:
+ examples: {}
+ headers: {}
+ parameters: {}
+ requestBodies: {}
+ responses: {}
+ schemas:
+ ConsoleSMAdminApi.UsageMetricsInstances:
+ properties:
+ total:
+ type: number
+ format: double
+ description: The number of usage metrics for a specific type.
+ required:
+ - total
+ type: object
+ additionalProperties: false
+ ConsoleSMAdminApi.UsageMetricsTaskUsers:
+ properties:
+ total:
+ type: number
+ format: double
+ description: The number of usage metrics for a specific type.
+ assignees:
+ items:
+ type: string
+ type: array
+ description: The users that tasks have been assigned to.
+ required:
+ - total
+ - assignees
+ type: object
+ additionalProperties: false
+ ConsoleSMAdminApi.UsageMetricsForCluster:
+ properties:
+ id:
+ type: string
+ description: The identifier of the cluster.
+ processInstances:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsInstances"
+ description: The usage metrics for started process instances.
+ decisionInstances:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsInstances"
+ description: The usage metrics for executed decision instances.
+ taskUsers:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsTaskUsers"
+ description: The usage metrics for assigned task users.
+ required:
+ - id
+ - processInstances
+ - decisionInstances
+ - taskUsers
+ type: object
+ additionalProperties: false
+ ConsoleSMAdminApi.Status:
+ type: string
+ enum:
+ - healthy
+ - unhealthy
+ - unknown
+ ConsoleSMAdminApi.ClusterType:
+ type: string
+ enum:
+ - automation
+ - management
+ ConsoleSMAdminApi.AppType:
+ type: string
+ enum:
+ - zeebe-broker
+ - zeebe-gateway
+ - operate
+ - tasklist
+ - optimize
+ - modeler
+ - console
+ - identity
+ - unknown
+ ConsoleSMAdminApi.App:
+ properties:
+ type:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.AppType"
+ description:
+ What application is running in the cluster, like Zeebe, Operate,
+ Tasklist, ...
+ id:
+ type: string
+ description: Unique identifier of the application
+ status:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.Status"
+ description: Indicates if an application is healthy or not
+ url:
+ type: string
+ description: The public URL of the application
+ generation:
+ type: string
+ description: This is the current version of the running application
+ readiness:
+ type: string
+ description: The readiness URL of the application
+ metrics:
+ type: string
+ description: The metrics URL of the application
+ required:
+ - type
+ - id
+ - status
+ - url
+ - generation
+ type: object
+ additionalProperties: false
+ ConsoleSMAdminApi.Cluster:
+ properties:
+ uuid:
+ type: string
+ description: Unique identifier of the cluster
+ name:
+ type: string
+ description: Name of the cluster
+ namespace:
+ type: string
+ description: Namespace the cluster is running in.
+ status:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.Status"
+ description: Indicates if a cluster is healthy or not
+ generation:
+ type: string
+ description: This is the current version of the running cluster
+ type:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.ClusterType"
+ description:
+ We're distinguishing between automation and management clusters.
+ Management clusters include applications that act globally in an
+ installed context, like Console or Modeler. Automation clusters are
+ the Zeebe clusters including applications like Operate, Tasklist and
+ Optimize.
+ apps:
+ items:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.App"
+ type: array
+ description: The list of applications running in the cluster
+ required:
+ - uuid
+ - name
+ - namespace
+ - status
+ - generation
+ - type
+ - apps
+ type: object
+ additionalProperties: false
+ securitySchemes:
+ bearer:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
+info:
+ title: Administration API (Self-Managed)
+ description: Access the administration API of Console Self-Managed.
+ version: 1.0.0
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+paths:
+ /admin-api/usage-metrics:
+ get:
+ operationId: getUsageMetrics
+ responses:
+ "200":
+ description: Ok
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.UsageMetricsForCluster"
+ "403":
+ description: Forbidden
+ "500":
+ description: Server-side error
+ description: Returns usage metrics for a specific cluster for a given time
+ range. The usage metrics are aggregated over the time range and include
+ number of started process instances, executed decision instances, and
+ assigned task users.
+ summary: Get usage metrics for clusters
+ tags:
+ - Usage Metrics
+ security:
+ - bearer: []
+ parameters:
+ - description: The unique identifier of the cluster
+ in: query
+ name: id
+ required: true
+ schema:
+ type: string
+ - description:
+ The start timestamp of the time range as UNIX timestamp in
+ milliseconds
+ in: query
+ name: start
+ required: true
+ schema:
+ format: double
+ type: number
+ - description: The end timestamp of the time range as UNIX timestamp in milliseconds
+ in: query
+ name: end
+ required: true
+ schema:
+ format: double
+ type: number
+ /admin-api/clusters:
+ get:
+ operationId: getClusters
+ responses:
+ "200":
+ description: Ok
+ content:
+ application/json:
+ schema:
+ items:
+ $ref: "#/components/schemas/ConsoleSMAdminApi.Cluster"
+ type: array
+ "403":
+ description: Forbidden
+ "500":
+ description: Server-side error
+ description:
+ Returns a list of all automation and management clusters. Each
+ cluster entry contains the running apps and their status.
+ summary: Get current clusters
+ tags:
+ - Clusters
+ security:
+ - bearer: []
+ parameters: []
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
diff --git a/api/camunda/generation-strategy.js b/api/camunda/generation-strategy.js
index 305cb90d63c..a17dc47527e 100644
--- a/api/camunda/generation-strategy.js
+++ b/api/camunda/generation-strategy.js
@@ -1,11 +1,9 @@
const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge");
const replace = require("replace-in-file");
-const outputDir = "docs/apis-tools/camunda-api-rest/specifications";
-const specFile = "api/camunda/camunda-openapi.yaml";
const fs = require("fs");
-function preGenerateDocs() {
- const originalSpec = fs.readFileSync(specFile, "utf8");
+function preGenerateDocs(config) {
+ const originalSpec = fs.readFileSync(config.specPath, "utf8");
console.log("adjusting C8 spec file...");
@@ -14,18 +12,20 @@ function preGenerateDocs() {
...redefineCreateProcessInstanceRequest(originalSpec),
...redefineEvaluateDecisionRequest(originalSpec),
...addAlphaAdmonition(), // needs to go before addFrequentlyLinkedDocs
- ...addFrequentlyLinkedDocs(),
+ ...addFrequentlyLinkedDocs(config.version),
];
replace.sync({
- files: specFile,
+ files: config.specPath,
from: specUpdates.map((x) => x.from),
to: specUpdates.map((x) => x.to),
});
}
-function postGenerateDocs() {
- removeDuplicateVersionBadge(`${outputDir}/camunda-8-rest-api.info.mdx`);
+function postGenerateDocs(config) {
+ removeDuplicateVersionBadge(
+ `${config.outputDir}/camunda-8-rest-api.info.mdx`
+ );
}
function addDisclaimer(originalSpec) {
@@ -239,9 +239,20 @@ function addAlphaAdmonition() {
];
}
-function addFrequentlyLinkedDocs() {
+function addFrequentlyLinkedDocs(version) {
// This task is inherently repeatable, because the `match` is replaced by something that won't match again.
+ // The path to the alpha doc varies by version.
+ const otherAlphaPaths = {
+ 8.6: "/reference/alpha-features.md",
+ 8.5: "/reference/alpha-features.md",
+ 8.4: "/reference/alpha-features.md",
+ 8.3: "/reference/alpha-features.md",
+ };
+ const alphaPath =
+ otherAlphaPaths[version] ||
+ "/components/early-access/alpha/alpha-features.md";
+
// Adds links to the Camunda Alpha REST API documentation, so that they don't have to live in the upstream spec.
return [
{
@@ -250,13 +261,12 @@ function addFrequentlyLinkedDocs() {
},
{
from: /endpoint is an alpha feature/g,
- to: "endpoint is an [alpha feature](/components/early-access/alpha/alpha-features.md)",
+ to: `endpoint is an [alpha feature](${alphaPath})`,
},
];
}
module.exports = {
- outputDir,
preGenerateDocs,
postGenerateDocs,
};
diff --git a/api/camunda/version-8.6/camunda-openapi.yaml b/api/camunda/version-8.6/camunda-openapi.yaml
new file mode 100644
index 00000000000..877b62adbeb
--- /dev/null
+++ b/api/camunda/version-8.6/camunda-openapi.yaml
@@ -0,0 +1,3853 @@
+# Disclaimer: This is a modified version of the Camunda REST API specification, optimized for the documentation.
+
+openapi: "3.0.3"
+info:
+ title: Camunda 8 REST API
+ version: "0.1"
+ description: API for communicating with a Camunda 8 cluster.
+ license:
+ name: Camunda License Version 1.0
+ url: https://github.com/camunda/camunda/blob/main/licenses/CAMUNDA-LICENSE-1.0.txt
+externalDocs:
+ description: Find out more
+ url: https://docs.camunda.io/docs/apis-tools/camunda-api-rest/overview/
+
+servers:
+ - url: "{schema}://{host}:{port}/v2"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the Camunda 8 REST Gateway.
+ port:
+ default: "8080"
+ description: The port of the Camunda 8 REST API server.
+ schema:
+ default: http
+ description: The schema of the Camunda 8 REST API server.
+
+paths:
+ /topology:
+ get:
+ tags:
+ - Cluster
+ summary: Get cluster topology
+ description: Obtains the current topology of the cluster the gateway is part of.
+ responses:
+ "200":
+ description: Obtains the current topology of the cluster the gateway is part of.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/TopologyResponse"
+ /license:
+ get:
+ tags:
+ - License
+ summary: Get status of Camunda license
+ description: Obtains the status of the current Camunda license
+ responses:
+ "200":
+ description: Obtains the current status of the Camunda license
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/LicenseResponse"
+ /jobs/activation:
+ post:
+ tags:
+ - Job
+ summary: Activate jobs
+ description: |
+ Iterate through all known partitions and activate jobs up to the requested maximum.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobActivationRequest"
+ responses:
+ "200":
+ description: The list of activated jobs.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobActivationResponse"
+ "400":
+ description: >
+ The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /jobs/{jobKey}/failure:
+ post:
+ tags:
+ - Job
+ summary: Fail job
+ description: |
+ Mark the job as failed
+ parameters:
+ - name: jobKey
+ in: path
+ required: true
+ description: The key of the job to fail.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobFailRequest"
+ responses:
+ "204":
+ description: The job is failed.
+ "400":
+ description: >
+ The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: >
+ The job with the given jobKey is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The job with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /jobs/{jobKey}/error:
+ post:
+ tags:
+ - Job
+ summary: Report error for job
+ description: |
+ Reports a business error (i.e. non-technical) that occurs while processing a job.
+ parameters:
+ - name: jobKey
+ in: path
+ required: true
+ description: The key of the job.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobErrorRequest"
+ responses:
+ "204":
+ description: An error is thrown for the job.
+ "400":
+ description: >
+ The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: >
+ The job with the given jobKey is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The job with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /jobs/{jobKey}/completion:
+ post:
+ tags:
+ - Job
+ summary: Complete job
+ description: |
+ Complete a job with the given payload, which allows completing the associated service task.
+ parameters:
+ - name: jobKey
+ in: path
+ required: true
+ description: The key of the job to complete.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobCompletionRequest"
+ responses:
+ "204":
+ description: The job was completed successfully.
+ "400":
+ description: >
+ The job with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The job with the given key was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The job with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /jobs/{jobKey}:
+ patch:
+ tags:
+ - Job
+ summary: Update a job
+ description: Update a job with the given key.
+ parameters:
+ - name: jobKey
+ in: path
+ required: true
+ description: The key of the job to update.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/JobUpdateRequest"
+ responses:
+ "204":
+ description: The job was updated successfully.
+ "400":
+ description: >
+ The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The job with the jobKey is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The job with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /incidents/{incidentKey}/resolution:
+ post:
+ tags:
+ - Incident
+ summary: Resolve incident
+ description: >
+ Marks the incident as resolved; most likely a call to Update job will be necessary
+ to reset the job’s retries, followed by this call.
+ parameters:
+ - name: incidentKey
+ in: path
+ required: true
+ description: Key of the incident to resolve.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "204":
+ description: The incident is marked as resolved.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The incident with the incidentKey is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /user-tasks/{userTaskKey}/completion:
+ post:
+ tags:
+ - User task
+ summary: Complete user task
+ description: Completes a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to complete.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskCompletionRequest"
+
+ responses:
+ "204":
+ description: The user task was completed successfully.
+ "400":
+ description: >
+ The user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The user task with the given key was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignment:
+ post:
+ tags:
+ - User task
+ summary: Assign user task
+ description: Assigns a user task with the given key to the given assignee.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to assign.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskAssignmentRequest"
+ responses:
+ "204":
+ description: The user task's assignment was adjusted.
+ "400":
+ description: >
+ The assignment of the user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The user task with the given key was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}:
+ patch:
+ tags:
+ - User task
+ summary: Update user task
+ description: Update a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to update.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskUpdateRequest"
+ responses:
+ "204":
+ description: The user task was updated successfully.
+ "400":
+ description: >
+ The user task with the given key cannot be updated.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The user task with the given key was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignee:
+ delete:
+ tags:
+ - User task
+ summary: Unassign user task
+ description: Removes the assignee of a task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "204":
+ description: The user task was unassigned successfully.
+ "400":
+ description: >
+ The user task with the given key cannot be unassigned.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The user task with the given key was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/search:
+ post:
+ tags:
+ - User task
+ summary: Query user tasks (alpha)
+ description: |
+ Search for user tasks based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The user task search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskSearchQueryResponse"
+ "400":
+ description: >
+ The user task search query failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /clock:
+ put:
+ tags:
+ - Clock
+ summary: Pin internal clock (alpha)
+ description: |
+ Set a precise, static time for the Zeebe engine’s internal clock.
+ When the clock is pinned, it remains at the specified time and does not advance.
+ To change the time, the clock must be pinned again with a new timestamp.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change
+ in future releases.
+ :::
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/ClockPinRequest"
+ responses:
+ "204":
+ description: >
+ The clock was successfully pinned to the specified time in epoch milliseconds.
+ "400":
+ description: The required timestamp parameter is missing or it is negative.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /clock/reset:
+ post:
+ tags:
+ - Clock
+ summary: Reset internal clock (alpha)
+ description: |
+ Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time.
+ This operation is useful for returning the clock to
+ normal behavior after it has been pinned to a specific time.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change
+ in future releases.
+ responses:
+ "204":
+ description: The clock was successfully reset to the system time.
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /process-instances:
+ post:
+ tags:
+ - Process instance
+ summary: Create process instance
+ description: |
+ Creates and starts an instance of the specified process.
+ The process definition to use to create the instance can be specified either using its unique key
+ (as returned by Deploy resources), or using the BPMN process ID and a version.
+
+ Waits for the completion of the process instance before returning a result
+ when awaitCompletion is enabled.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/CreateProcessInstanceRequest"
+ examples:
+ "By process definition key":
+ summary: "Create a process instance by processDefinitionKey."
+ value:
+ processDefinitionKey: 12345
+ variables: {}
+ "By process definition ID":
+ summary: "Create a process instance by processDefinitionId and version."
+ value:
+ processDefinitionId: "1234-5678"
+ version: 1
+ variables: {}
+ responses:
+ "200":
+ description: The process instance was created.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/CreateProcessInstanceResponse"
+ "400":
+ description: The provided data is not valid.
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /process-instances/search:
+ post:
+ tags:
+ - Process instance
+ summary: Query process instances (alpha)
+ description: |
+ Search for process instances based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/ProcessInstanceSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The Process Instance Search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/ProcessInstanceSearchQueryResponse"
+ "400":
+ description: >
+ The Process Instance Search Query failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /process-instances/{processInstanceKey}/cancellation:
+ post:
+ tags:
+ - Process instance
+ summary: Cancel process instance
+ description: Cancels a running process instance.
+ parameters:
+ - name: processInstanceKey
+ in: path
+ required: true
+ description: The key of the process instance to cancel.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/CancelProcessInstanceRequest"
+ responses:
+ "204":
+ description: The process instance is canceled.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The process instance is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /process-instances/{processInstanceKey}/migration:
+ post:
+ tags:
+ - Process instance
+ summary: Migrate process instance
+ description: |
+ Migrates a process instance to a new process definition.
+ This request can contain multiple mapping instructions to define mapping between the active
+ process instance's elements and target process definition elements.
+
+ Use this to upgrade a process instance to a new version of a process or to
+ a different process definition, e.g. to keep your running instances up-to-date with the
+ latest process improvements.
+ parameters:
+ - name: processInstanceKey
+ in: path
+ required: true
+ description: The key of the process instance that should be migrated.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/MigrateProcessInstanceRequest"
+ responses:
+ "204":
+ description: The process instance is migrated.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The process instance is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /process-instances/{processInstanceKey}/modification:
+ post:
+ tags:
+ - Process instance
+ summary: Modify process instance
+ description: |
+ Modifies a running process instance.
+ This request can contain multiple instructions to activate an element of the process or
+ to terminate an active instance of an element.
+
+ Use this to repair a process instance that is stuck on an element or took an unintended path.
+ For example, because an external system is not available or doesn't respond as expected.
+ parameters:
+ - name: processInstanceKey
+ in: path
+ required: true
+ description: The key of the process instance that should be modified.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/ModifyProcessInstanceRequest"
+ responses:
+ "204":
+ description: The process instance is modified.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The process instance is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /flownode-instances/search:
+ post:
+ tags:
+ - Flow node Instance
+ summary: Query flow node instances (alpha)
+ description: |
+ Search for flow node instances based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/FlowNodeInstanceSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The Flow node instance search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/FlowNodeInstanceSearchQueryResponse"
+ "400":
+ description: >
+ The Flow node instance Search Query failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /decision-definitions/search:
+ post:
+ tags:
+ - Decision definition
+ summary: Query decision definitions (alpha)
+ description: |
+ Search for decision definitions based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionDefinitionSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The Decision Definition Search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionDefinitionSearchQueryResponse"
+ "400":
+ description: >
+ The Decision Definition Search Query failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /decision-definitions/{decisionDefinitionKey}/xml:
+ get:
+ tags:
+ - Decision definition
+ summary: Get decision definition XML (alpha)
+ description: |
+ Returns decision definition as XML.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ parameters:
+ - name: decisionDefinitionKey
+ in: path
+ required: true
+ description: The assigned key of the decision definition, which acts as a unique identifier for this decision.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: >
+ The XML of the decision definition is successfully returned.
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: >
+ The Decision Definition Get XML failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: >
+ The decision with the given key was not found.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /decision-requirements/search:
+ post:
+ tags:
+ - Decision requirements
+ summary: Query decision requirements (alpha)
+ description: |
+ Search for decision requirements based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionRequirementsSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The decision requirements search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionRequirementsSearchQueryResponse"
+ "400":
+ description: >
+ The decision requirements search query failed.
+ More details are provided in the response body.
+
+ /decision-instances/search:
+ post:
+ tags:
+ - Decision instance
+ summary: Query decision instances (alpha)
+ description: |
+ Search for decision instances based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionInstanceSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The decision instance search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DecisionInstanceSearchQueryResponse"
+ "400":
+ description: >
+ The decision instance search query failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /decision-definitions/evaluation:
+ post:
+ tags:
+ - Decision definition
+ summary: Evaluate decision
+ description: |
+ Evaluates a decision.
+ You specify the decision to evaluate either by using its unique key (as returned by
+ DeployResource), or using the decision ID. When using the decision ID, the latest deployed
+ version of the decision is used.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/EvaluateDecisionRequest"
+ examples:
+ "By decision definition key":
+ summary: "Evaluate the decision by decisionDefinitionKey."
+ value:
+ decisionDefinitionKey: 12345
+ variables: {}
+ "By decision definition ID":
+ summary: "Evaluate the decision by decisionDefinitionId."
+ value:
+ decisionDefinitionId: "1234-5678"
+ variables: {}
+ responses:
+ "200":
+ description: The decision was evaluated.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/EvaluateDecisionResponse"
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The decision is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /messages/publication:
+ post:
+ tags:
+ - Message
+ summary: Publish a message
+ description: |
+ Publishes a single message.
+ Messages are published to specific partitions computed from their correlation keys.
+ The endpoint does not wait for a correlation result.
+ Use the message correlation endpoint for such use cases.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/MessagePublicationRequest"
+ responses:
+ "200":
+ description: The message was published.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/MessagePublicationResponse"
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: Internal server error.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /messages/correlation:
+ post:
+ tags:
+ - Message
+ summary: Correlate a message
+ description: |
+ Publishes a message and correlates it to a subscription.
+ If correlation is successful it will return the first process instance key the message correlated with.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/MessageCorrelationRequest"
+ responses:
+ "200":
+ description: The message is correlated to one or more process instances
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/MessageCorrelationResponse"
+ "400":
+ description: The provided data is not valid
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "403":
+ description: Unauthorized
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: Not found
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: Internal server error
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /documents:
+ post:
+ tags:
+ - Documents
+ summary: Upload document (alpha)
+ description: |
+ Upload a document to the Camunda 8 cluster.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
+ which is not meant for production use.
+ :::
+ parameters:
+ - name: storeId
+ in: query
+ required: false
+ description: The ID of the document store to upload the document to.
+ schema:
+ type: string
+ - name: documentId
+ in: query
+ required: false
+ description: >
+ The ID of the document to upload. If not provided, a new ID will be generated.
+ Specifying an existing ID will result in an error if the document already exists.
+ schema:
+ type: string
+ requestBody:
+ required: true
+ content:
+ multipart/form-data:
+ schema:
+ type: object
+ properties:
+ file:
+ type: string
+ format: binary
+ metadata:
+ $ref: "#/components/schemas/DocumentMetadata"
+ required:
+ - file
+ encoding:
+ metadata:
+ contentType: application/json
+ responses:
+ "201":
+ description: The document was uploaded successfully.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DocumentReference"
+ "400":
+ description: >
+ The document upload failed. More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /documents/{documentId}:
+ get:
+ tags:
+ - Documents
+ summary: Download document (alpha)
+ description: |
+ Download a document from the Camunda 8 cluster.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
+ which is not meant for production use.
+ :::
+ parameters:
+ - name: documentId
+ in: path
+ required: true
+ description: The ID of the document to download.
+ schema:
+ type: string
+ - name: storeId
+ in: query
+ required: false
+ description: The ID of the document store to download the document from.
+ schema:
+ type: string
+ responses:
+ "200":
+ description: The document was downloaded successfully.
+ content:
+ application/octet-stream:
+ schema:
+ type: string
+ format: binary
+ "404":
+ description: >
+ The document with the given ID was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ delete:
+ tags:
+ - Documents
+ summary: Delete document (alpha)
+ description: |
+ Delete a document from the Camunda 8 cluster.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
+ which is not meant for production use.
+ :::
+ parameters:
+ - name: documentId
+ in: path
+ required: true
+ description: The ID of the document to delete.
+ schema:
+ type: string
+ - name: storeId
+ in: query
+ required: false
+ description: The ID of the document store to delete the document from.
+ schema:
+ type: string
+ responses:
+ "200":
+ description: The document was deleted successfully.
+ "404":
+ description: >
+ The document with the given ID was not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /document/{documentId}/links:
+ post:
+ tags:
+ - Documents
+ summary: Create document link (alpha)
+ description: |
+ Create a link to a document in the Camunda 8 cluster.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
+ which is not meant for production use.
+ :::
+ parameters:
+ - name: documentId
+ in: path
+ required: true
+ description: The ID of the document to link.
+ schema:
+ type: string
+ - name: storeId
+ in: query
+ required: false
+ description: The ID of the document store to link the document from.
+ schema:
+ type: string
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DocumentLinkRequest"
+ responses:
+ "201":
+ description: The document link was created successfully.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DocumentLink"
+ "400":
+ description: >
+ The document link creation failed. More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /users/search:
+ post:
+ tags:
+ - User
+ summary: "Query users (alpha)"
+ description: |
+ Search for users based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ operationId: "findAllUsers"
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserSearchQueryRequest"
+ required: true
+ responses:
+ "200":
+ description: "OK"
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserSearchResponse"
+ "400":
+ description: "Bad request"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "401":
+ description: "Unauthorized"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "403":
+ description: "Forbidden"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: "Not found"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: "Internal server error"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /incidents/search:
+ post:
+ tags:
+ - Incident
+ summary: Query incidents (alpha)
+ description: |
+ Search for incidents based on given criteria.
+
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/IncidentSearchQueryRequest"
+ responses:
+ "200":
+ description: >
+ The incident search successful response.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/IncidentSearchQueryResponse"
+ "400":
+ description: >
+ The incident search query failed.
+ More details are provided in the response body.
+ "401":
+ description: "Unauthorized"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "403":
+ description: "Forbidden"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: "Not found"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: "Internal server error"
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /incidents/{incidentKey}:
+ get:
+ tags:
+ - Incident
+ summary: Get incident by key (alpha)
+ description: |
+ Returns incident as JSON.
+ :::note
+ This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
+ See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
+ for further details.
+ :::
+ parameters:
+ - name: incidentKey
+ in: path
+ required: true
+ description: The assigned key of the incident, which acts as a unique identifier for this incident.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: >
+ The incident is successfully returned.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/IncidentItem"
+ "400":
+ description: >
+ The incident Get failed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: >
+ The incident with the given key was not found.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: >
+ An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /deployments:
+ post:
+ tags:
+ - Resource
+ summary: Deploy resources
+ description: |
+ Deploys one or more resources (e.g. processes, decision models, or forms).
+ This is an atomic call, i.e. either all resources are deployed or none of them are.
+ requestBody:
+ required: true
+ content:
+ multipart/form-data:
+ schema:
+ type: object
+ properties:
+ resources:
+ type: array
+ description: |
+ The binary data to create the deployment resources. It is possible to have more than one form part with different form part names for the binary data to create a deployment.
+ items:
+ type: string
+ format: binary
+ tenantId:
+ type: string
+ description: The tenant to deploy the resources to.
+ required:
+ - resource
+ responses:
+ "200":
+ description: The resources are deployed.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DeploymentResponse"
+ "400":
+ description: >
+ The document upload failed. More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /resources/{resourceKey}/deletion:
+ post:
+ tags:
+ - Resource
+ summary: Delete resource
+ description: |
+ Deletes a deployed resource.
+ This can be a process definition, decision requirements definition, or form definition
+ deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter.
+ parameters:
+ - name: resourceKey
+ in: path
+ required: true
+ description: |
+ The key of the resource to delete.
+ This can be the key of a process definition, the key of a decision requirements
+ definition or the key of a form definition
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/DeleteResourceRequest"
+ responses:
+ "200":
+ description: The resource is deleted.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The resource is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /element-instances/{elementInstanceKey}/variables:
+ post:
+ tags:
+ - Element instance
+ summary: Update element instance variables
+ description: |
+ Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data.
+ Specify the element instance in the `elementInstanceKey` parameter.
+ parameters:
+ - name: elementInstanceKey
+ in: path
+ required: true
+ description: |
+ The key of the element instance to update the variables for.
+ This can be the process instance key (as obtained during instance creation), or a given
+ element, such as a service task (see the `elementInstanceKey` on the job message).
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/SetVariableRequest"
+ responses:
+ "204":
+ description: The variables were updated.
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ /signals/broadcast:
+ post:
+ tags:
+ - Signal
+ summary: Broadcast signal
+ description: Broadcasts a signal.
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/SignalBroadcastRequest"
+ responses:
+ "200":
+ description: The signal was broadcast.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/SignalBroadcastResponse"
+ "400":
+ description: The provided data is not valid.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "404":
+ description: The signal is not found.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "500":
+ description: An internal error occurred while processing the request.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+components:
+ schemas:
+ UserTaskSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ description: User task search query request.
+ type: object
+ properties:
+ filter:
+ $ref: "#/components/schemas/UserTaskFilterRequest"
+ UserTaskSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ description: User task search query response.
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/UserTaskItem"
+ UserTaskFilterRequest:
+ description: User task filter request.
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ state:
+ type: string
+ assignee:
+ type: string
+ elementId:
+ type: string
+ candidateGroup:
+ type: string
+ candidateUser:
+ type: string
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ tenantIds:
+ type: string
+ processDefinitionId:
+ type: string
+ variables:
+ type: array
+ items:
+ $ref: "#/components/schemas/UserTaskVariableFilterRequest"
+ UserTaskVariableFilterRequest:
+ type: object
+ properties:
+ name:
+ type: string
+ value:
+ type: string
+ UserTaskItem:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ state:
+ type: string
+ assignee:
+ type: string
+ elementId:
+ type: string
+ elementInstanceKey:
+ type: integer
+ format: int64
+ candidateGroup:
+ type: array
+ items:
+ type: string
+ candidateUser:
+ type: array
+ items:
+ type: string
+ processDefinitionId:
+ type: string
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ formKey:
+ type: integer
+ format: int64
+ creationDate:
+ type: string
+ format: date-time
+ completionDate:
+ type: string
+ format: date-time
+ followUpDate:
+ type: string
+ format: date-time
+ dueDate:
+ type: string
+ format: date-time
+ tenantIds:
+ type: string
+ externalFormReference:
+ type: string
+ processDefinitionVersion:
+ type: integer
+ format: int32
+ customHeaders:
+ type: object
+ additionalProperties:
+ type: string
+ priority:
+ type: integer
+ description: The priority of a user task. The higher the value the higher the priority.
+ minimum: 0
+ maximum: 100
+ default: 50
+ ProcessInstanceSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/ProcessInstanceFilterRequest"
+ ProcessInstanceFilterRequest:
+ type: object
+ properties:
+ running:
+ type: boolean
+ active:
+ type: boolean
+ incidents:
+ type: boolean
+ finished:
+ type: boolean
+ completed:
+ type: boolean
+ canceled:
+ type: boolean
+ retriesLeft:
+ type: boolean
+ errorMessage:
+ type: string
+ activityId:
+ type: string
+ startDate:
+ type: string
+ format: date-time
+ endDate:
+ type: string
+ format: date-time
+ bpmnProcessId:
+ type: string
+ description: The bpmn process ID.
+ processDefinitionVersion:
+ type: integer
+ format: int32
+ variable:
+ allOf:
+ - $ref: "#/components/schemas/ProcessInstanceVariableFilterRequest"
+ batchOperationId:
+ type: string
+ parentProcessInstanceKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ ProcessInstanceVariableFilterRequest:
+ type: object
+ properties:
+ name:
+ type: string
+ values:
+ type: array
+ items:
+ type: string
+ ProcessInstanceSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/ProcessInstanceItem"
+ ProcessInstanceItem:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processDefinitionName:
+ type: string
+ description: The process name.
+ processDefinitionVersion:
+ type: integer
+ format: int32
+ bpmnProcessId:
+ type: string
+ parentKey:
+ type: integer
+ format: int64
+ parentFlowNodeInstanceKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ format: date-time
+ endDate:
+ type: string
+ format: date-time
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - INCIDENT
+ - COMPLETED
+ - CANCELED
+ - UNKNOWN
+ - UNSPECIFIED
+ incident:
+ type: boolean
+ hasActiveOperation:
+ type: boolean
+ processDefinitionKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ rootInstanceId:
+ type: string
+ operations:
+ type: array
+ items:
+ $ref: "#/components/schemas/OperationItem"
+ callHierarchy:
+ type: array
+ items:
+ $ref: "#/components/schemas/ProcessInstanceReferenceItem"
+ CancelProcessInstanceRequest:
+ type: object
+ nullable: true
+ properties:
+ operationReference:
+ description: |
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be > 0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+
+ FlowNodeInstanceSearchQueryRequest:
+ description: Flow node instance search request
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/FlowNodeInstanceFilterRequest"
+ FlowNodeInstanceFilterRequest:
+ type: object
+ properties:
+ flowNodeInstanceKey:
+ type: integer
+ description: The key of this flow node instance.
+ format: int64
+ processInstanceKey:
+ type: integer
+ description: The process instance key.
+ format: int64
+ processDefinitionKey:
+ type: integer
+ description: The process definition key.
+ format: int64
+ state:
+ type: string
+ description: The state, one of ACTIVE, COMPLETED, TERMINATED.
+ type:
+ type: string
+ description: The flow node type
+ flowNodeId:
+ type: string
+ description: The flow node id
+ flowNodeName:
+ type: string
+ description: The flow node name
+ treePath:
+ type: string
+ description: The path of keys from process instance to this flow node instance separated by '/'
+ incident:
+ type: boolean
+ description: Shows whether this flow node instance has an incident related to
+ incidentKey:
+ type: integer
+ description: The key of incident if field incident is true
+ format: int64
+ tenantId:
+ description: The tenant id
+ type: string
+ FlowNodeInstanceSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/FlowNodeInstanceItem"
+ FlowNodeInstanceItem:
+ type: object
+ properties:
+ flowNodeInstanceKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ flowNodeId:
+ type: string
+ flowNodeName:
+ type: string
+ treePath:
+ type: string
+ type:
+ type: string
+ state:
+ type: string
+ incident:
+ type: boolean
+ incidentKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ DecisionDefinitionSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/DecisionDefinitionFilterRequest"
+ DecisionDefinitionFilterRequest:
+ type: object
+ properties:
+ decisionDefinitionKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this decision definition.
+ decisionDefinitionId:
+ type: string
+ description: The DMN id of the decision definition.
+ decisionDefinitionName:
+ type: string
+ description: The DMN name of the decision definition.
+ version:
+ type: integer
+ format: int32
+ description: The assigned version of the decision definition.
+ decisionRequirementsId:
+ type: string
+ description: the DMN id of the decision requirements graph that the decision definition is part of.
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: The assigned key of the decision requirements graph that the decision definition is part of.
+ tenantId:
+ type: string
+ description: The tenant id of the decision definition.
+ IncidentSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/IncidentFilterRequest"
+ IncidentFilterRequest:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this incident.
+ processDefinitionKey:
+ type: integer
+ format: int64
+ description: The process definition key associated to this incident.
+ processDefinitionId:
+ type: string
+ description: The bpmn process id associated to this incident.
+ processInstanceKey:
+ type: integer
+ format: int64
+ description: The process instance key associated to this incident.
+ errorType:
+ type: string
+ description: Incident error type with a defined set of values.
+ enum:
+ - UNSPECIFIED
+ - UNKNOWN
+ - IO_MAPPING_ERROR
+ - JOB_NO_RETRIES
+ - CONDITION_ERROR
+ - EXTRACT_VALUE_ERROR
+ - CALLED_ELEMENT_ERROR
+ - UNHANDLED_ERROR_EVENT
+ - MESSAGE_SIZE_EXCEEDED
+ - CALLED_DECISION_ERROR
+ - DECISION_EVALUATION_ERROR
+ - FORM_NOT_FOUND
+ errorMessage:
+ type: string
+ description: Error message which describes the error in more detail.
+ flowNodeId:
+ type: string
+ description: The flow node id associated to this incident.
+ flowNodeInstanceKey:
+ type: integer
+ format: int64
+ description: The flow node instance key associated to this incident.
+ creationTime:
+ type: string
+ description: Date of incident creation.
+ format: date-time
+ state:
+ type: string
+ description: State of this incident with a defined set of values.
+ enum:
+ - ACTIVE
+ - MIGRATED
+ - RESOLVED
+ - PENDING
+ jobKey:
+ type: integer
+ format: int64
+ description: The job key, if exists, associated with this incident.
+ treePath:
+ type: string
+ description: The path from process instance via flow node ids and flow node instance keys leading to this incident.
+ tenantId:
+ description: The tenant id of the incident.
+ type: string
+ IncidentSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/IncidentItem"
+ IncidentItem:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this incident.
+ processDefinitionKey:
+ type: integer
+ format: int64
+ description: The process definition key associated to this incident.
+ processDefinitionId:
+ type: string
+ description: The bpmn process id associated to this incident.
+ processInstanceKey:
+ type: integer
+ format: int64
+ description: The process instance key associated to this incident.
+ errorType:
+ type: string
+ description: Incident error type with a defined set of values.
+ enum:
+ - UNSPECIFIED
+ - UNKNOWN
+ - IO_MAPPING_ERROR
+ - JOB_NO_RETRIES
+ - CONDITION_ERROR
+ - EXTRACT_VALUE_ERROR
+ - CALLED_ELEMENT_ERROR
+ - UNHANDLED_ERROR_EVENT
+ - MESSAGE_SIZE_EXCEEDED
+ - CALLED_DECISION_ERROR
+ - DECISION_EVALUATION_ERROR
+ - FORM_NOT_FOUND
+ errorMessage:
+ type: string
+ description: Error message which describes the error in more detail.
+ flowNodeId:
+ type: string
+ description: The flow node id associated to this incident.
+ flowNodeInstanceKey:
+ type: integer
+ format: int64
+ description: The flow node instance key associated to this incident.
+ creationTime:
+ type: string
+ description: Date of incident creation.
+ format: date-time
+ state:
+ type: string
+ description: State of this incident with a defined set of values.
+ enum:
+ - ACTIVE
+ - MIGRATED
+ - RESOLVED
+ - PENDING
+ jobKey:
+ type: integer
+ description: The job key, if exists, associated with this incident.
+ format: int64
+ treePath:
+ type: string
+ description: The path from process instance via flow node ids and flow node instance keys leading to this incident.
+ tenantId:
+ description: The tenant id of the incident.
+ type: string
+ OperationItem:
+ description: " Operation"
+ type: object
+ properties:
+ id:
+ type: string
+ batchOperationId:
+ type: string
+ type:
+ type: string
+ enum:
+ - RESOLVE_INCIDENT
+ - CANCEL_PROCESS_INSTANCE
+ - DELETE_PROCESS_INSTANCE
+ - ADD_VARIABLE
+ - UPDATE_VARIABLE
+ - MODIFY_PROCESS_INSTANCE
+ - DELETE_DECISION_DEFINITION
+ - DELETE_PROCESS_DEFINITION
+ - MIGRATE_PROCESS_INSTANCE
+ state:
+ type: string
+ enum:
+ - SCHEDULED
+ - LOCKED
+ - SENT
+ - FAILED
+ - COMPLETED
+ errorMessage:
+ type: string
+ completedDate:
+ type: string
+ format: date-time
+ ProcessInstanceReferenceItem:
+ description: "Process instance reference description"
+ type: object
+ properties:
+ instanceId:
+ type: string
+ processDefinitionId:
+ type: string
+ processDefinitionName:
+ type: string
+ DecisionDefinitionSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/DecisionDefinitionItem"
+ DecisionDefinitionItem:
+ type: object
+ properties:
+ decisionDefinitionKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this decision definition.
+ decisionDefinitionId:
+ type: string
+ description: The DMN id of the decision definition.
+ decisionDefinitionName:
+ type: string
+ description: The DMN name of the decision definition.
+ version:
+ type: integer
+ format: int32
+ description: The assigned version of the decision definition.
+ decisionRequirementsId:
+ type: string
+ description: the DMN id of the decision requirements graph that the decision definition is part of.
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: The assigned key of the decision requirements graph that the decision definition is part of.
+ tenantId:
+ type: string
+ description: The tenant id of the decision definition.
+ AuthorizationPatchRequest:
+ type: object
+ properties:
+ action:
+ description: Indicates if permissions should be added or removed.
+ type: string
+ enum:
+ - ADD
+ - REMOVE
+ resourceType:
+ description: The type of resource to add/remove perissions to/from.
+ enum:
+ - AUTHORIZATION
+ - MESSAGE
+ - JOB
+ - APPLICATION
+ - TENANT
+ - DEPLOYMENT
+ - PROCESS_DEFINITION
+ - USER_TASK
+ - DECISION_REQUIREMENTS_DEFINITION
+ - DECISION_DEFINITION
+ - USER_GROUP
+ - USER
+ - ROLE
+ permissions:
+ type: array
+ description: The permissions to add/remove.
+ items:
+ properties:
+ permissionType:
+ description: Specifies the type of permissions.
+ enum:
+ - CREATE
+ - READ
+ - UPDATE
+ - DELETE
+ resourceIds:
+ type: array
+ description: A list of resource IDs the permission relates to.
+ items:
+ type: string
+ UserRequest:
+ type: "object"
+ properties:
+ password:
+ type: "string"
+ username:
+ type: "string"
+ name:
+ type: "string"
+ email:
+ type: "string"
+ UserCreateResponse:
+ type: "object"
+ properties:
+ userKey:
+ description: The key of the created user
+ type: "integer"
+ format: "int64"
+ UserSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/UserFilterRequest"
+ UserFilterRequest:
+ type: object
+ properties:
+ username:
+ type: "string"
+ name:
+ type: "string"
+ email:
+ type: "string"
+ UserResponse:
+ type: "object"
+ properties:
+ id:
+ type: "integer"
+ format: "int64"
+ key:
+ type: "integer"
+ format: "int64"
+ username:
+ type: "string"
+ name:
+ type: "string"
+ email:
+ type: "string"
+ UserSearchResponse:
+ type: object
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/UserResponse"
+ TopologyResponse:
+ description: The response of a topology request.
+ type: object
+ properties:
+ brokers:
+ description: A list of brokers that are part of this cluster.
+ type: array
+ nullable: true
+ items:
+ $ref: "#/components/schemas/BrokerInfo"
+ clusterSize:
+ description: The number of brokers in the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ partitionsCount:
+ description: The number of partitions are spread across the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ replicationFactor:
+ description: The configured replication factor for this cluster.
+ type: integer
+ format: int32
+ nullable: true
+ gatewayVersion:
+ description: The version of the Zeebe Gateway.
+ type: string
+ nullable: true
+ LicenseResponse:
+ description: The response of a license request.
+ type: object
+ properties:
+ validLicense:
+ description: True if the Camunda license is valid, false if otherwise
+ type: boolean
+ nullable: false
+ licenseType:
+ description: Will return the license type property of the Camunda license
+ type: string
+ BrokerInfo:
+ description: Provides information on a broker node.
+ type: object
+ properties:
+ nodeId:
+ description: The unique (within a cluster) node ID for the broker.
+ type: integer
+ format: int32
+ host:
+ description: The hostname for reaching the broker.
+ type: string
+ port:
+ description: The port for reaching the broker.
+ type: integer
+ format: int32
+ partitions:
+ description: A list of partitions managed or replicated on this broker.
+ type: array
+ items:
+ $ref: "#/components/schemas/Partition"
+ version:
+ description: The broker version.
+ type: string
+ Partition:
+ description: Provides information on a partition within a broker node.
+ type: object
+ properties:
+ partitionId:
+ description: The unique ID of this partition.
+ type: integer
+ format: int32
+ role:
+ description: Describes the Raft role of the broker for a given partition.
+ type: string
+ enum:
+ - leader
+ - follower
+ - inactive
+ health:
+ description: Describes the current health of the partition.
+ type: string
+ enum:
+ - healthy
+ - unhealthy
+ - dead
+ UserTaskCompletionRequest:
+ type: object
+ properties:
+ variables:
+ additionalProperties: true
+ description: The variables to complete the user task with.
+ type: object
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "complete".
+ type: string
+ nullable: true
+ UserTaskAssignmentRequest:
+ type: object
+ properties:
+ assignee:
+ description: The assignee for the user task. The assignee must not be empty or `null`.
+ type: string
+ nullable: false
+ allowOverride:
+ description: >
+ By default, the task is reassigned if it was already assigned. Set this to `false`
+ to return an error in such cases. The task must then first be unassigned to
+ be assigned again. Use this when you have users picking from group task
+ queues to prevent race conditions.
+ type: boolean
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "assign".
+ type: string
+ nullable: true
+ UserTaskUpdateRequest:
+ type: object
+ properties:
+ changeset:
+ $ref: "#/components/schemas/Changeset"
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "update".
+ type: string
+ nullable: true
+ Changeset:
+ description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `candidateGroups` - reset by providing an empty list
+ * `candidateUsers` - reset by providing an empty list
+ * `dueDate` - reset by providing an empty String
+ * `followUpDate` - reset by providing an empty String
+ * `priority` - minimum 0, maximum 100, default 50
+
+ Providing any of those attributes with a `null` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.
+ type: object
+ nullable: true
+ additionalProperties: true
+ properties:
+ dueDate:
+ type: string
+ format: date-time
+ description: The due date of the task. Reset by providing an empty String.
+ nullable: true
+ followUpDate:
+ type: string
+ format: date-time
+ description: The follow-up date of the task. Reset by providing an empty String.
+ nullable: true
+ candidateUsers:
+ type: array
+ description: The list of candidate users of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ candidateGroups:
+ type: array
+ description: The list of candidate groups of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ priority:
+ type: integer
+ format: int32
+ description: The priority of the task.
+ minimum: 0
+ default: 50
+ maximum: 100
+ nullable: true
+ ClockPinRequest:
+ type: object
+ properties:
+ timestamp:
+ description: The exact time in epoch milliseconds to which the clock should be pinned.
+ type: integer
+ format: int64
+ required:
+ - timestamp
+ JobActivationRequest:
+ type: object
+ properties:
+ type:
+ description: >
+ the job type, as defined in the BPMN process (e.g. )
+ type: string
+ worker:
+ description: the name of the worker activating the jobs, mostly used for logging purposes
+ type: string
+ nullable: true
+ timeout:
+ description: >
+ a job returned after this call will not be activated by another call until the
+ timeout (in ms) has been reached
+ type: integer
+ format: int64
+ maxJobsToActivate:
+ description: the maximum jobs to activate by this request
+ type: integer
+ format: int32
+ fetchVariable:
+ description: >
+ a list of variables to fetch as the job variables; if empty, all visible variables at
+ the time of activation for the scope of the job will be returned
+ type: array
+ nullable: true
+ items:
+ type: string
+ requestTimeout:
+ description: >
+ The request will be completed when at least one job is activated or after the
+ requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used.
+ If the requestTimeout < 0, long polling is disabled and the request is completed
+ immediately, even when no job is activated.
+ type: integer
+ format: int64
+ default: 0
+ nullable: true
+ tenantIds:
+ description: a list of IDs of tenants for which to activate jobs
+ type: array
+ items:
+ type: string
+ nullable: true
+ required:
+ - type
+ - timeout
+ - maxJobsToActivate
+ JobActivationResponse:
+ description: The list of activated jobs
+ type: object
+ properties:
+ jobs:
+ type: array
+ items:
+ $ref: "#/components/schemas/ActivatedJob"
+ ActivatedJob:
+ type: object
+ properties:
+ key:
+ description: the key, a unique identifier for the job
+ type: integer
+ format: int64
+ type:
+ description: the type of the job (should match what was requested)
+ type: string
+ processInstanceKey:
+ description: the job's process instance key
+ type: integer
+ format: int64
+ processDefinitionId:
+ description: the bpmn process ID of the job's process definition
+ type: string
+ processDefinitionVersion:
+ description: the version of the job's process definition
+ type: integer
+ format: int32
+ processDefinitionKey:
+ description: the key of the job's process definition
+ type: integer
+ format: int64
+ elementId:
+ description: the associated task element ID
+ type: string
+ elementInstanceKey:
+ description: >
+ the unique key identifying the associated task, unique within the scope of the
+ process instance
+ type: integer
+ format: int64
+ customHeaders:
+ description: a set of custom headers defined during modelling; returned as a serialized JSON document
+ type: object
+ additionalProperties: true
+ worker:
+ description: the name of the worker which activated this job
+ type: string
+ retries:
+ description: the amount of retries left to this job (should always be positive)
+ type: integer
+ format: int32
+ deadline:
+ description: when the job can be activated again, sent as a UNIX epoch timestamp
+ type: integer
+ format: int64
+ variables:
+ description: All variables visible to the task scope, computed at activation time
+ type: object
+ additionalProperties: true
+ tenantId:
+ description: The ID of the tenant that owns the job
+ type: string
+ JobFailRequest:
+ type: object
+ properties:
+ retries:
+ description: >
+ The amount of retries the job should have left
+ type: integer
+ format: int32
+ default: 0
+ errorMessage:
+ description: >
+ An optional message describing why the job failed. This is particularly useful if a job
+ runs out of retries and an incident is raised, as this message can help explain why an
+ incident was raised.
+ type: string
+ nullable: true
+ retryBackOff:
+ description: >
+ The backoff timeout (in ms) for the next retry.
+ type: integer
+ format: int64
+ default: 0
+ variables:
+ additionalProperties: true
+ description: >
+ JSON object that will instantiate the variables at the local scope of the job's
+ associated task.
+ type: object
+ nullable: true
+ JobErrorRequest:
+ type: object
+ properties:
+ errorCode:
+ description: >
+ The error code that will be matched with an error catch event.
+ type: string
+ errorMessage:
+ description: >
+ An error message that provides additional context.
+ type: string
+ nullable: true
+ variables:
+ additionalProperties: true
+ description: >
+ JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error.
+ type: object
+ nullable: true
+ required:
+ - errorCode
+ JobCompletionRequest:
+ type: object
+ properties:
+ variables:
+ additionalProperties: true
+ description: The variables to complete the job with.
+ type: object
+ nullable: true
+ JobUpdateRequest:
+ type: object
+ properties:
+ changeset:
+ $ref: "#/components/schemas/JobChangeset"
+ required:
+ - changeset
+ JobChangeset:
+ description: |
+ JSON object with changed job attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `retries` - The new amount of retries for the job; must be a positive number.
+ * `timeout` - The duration of the new timeout in ms, starting from the current moment.
+
+ Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value.
+
+ The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead.
+ type: object
+ properties:
+ retries:
+ type: integer
+ format: int32
+ description: The new amount of retries for the job; must be a positive number.
+ nullable: true
+ timeout:
+ type: integer
+ format: int64
+ description: The duration of the new timeout in ms, starting from the current moment.
+ nullable: true
+
+ ProblemDetail:
+ description: >
+ A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457).
+ There may be additional properties specific to the problem type.
+ type: object
+ properties:
+ type:
+ type: string
+ format: uri
+ description: A URI identifying the problem type.
+ default: about:blank
+ title:
+ type: string
+ description: A summary of the problem type.
+ status:
+ type: integer
+ format: int32
+ description: The HTTP status code for this problem.
+ minimum: 400
+ maximum: 600
+ detail:
+ type: string
+ description: An explanation of the problem in more detail.
+ instance:
+ type: string
+ format: uri
+ description: A URI identifying the origin of the problem.
+ SearchQueryRequest:
+ type: object
+ properties:
+ sort:
+ type: array
+ items:
+ allOf:
+ - $ref: "#/components/schemas/SearchQuerySortRequest"
+ page:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryPageRequest"
+ type: object
+ SearchQueryPageRequest:
+ type: object
+ properties:
+ from:
+ type: integer
+ format: int32
+ limit:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ searchBefore:
+ type: array
+ items:
+ type: object
+ SearchQuerySortRequest:
+ type: object
+ properties:
+ field:
+ type: string
+ order:
+ type: string
+ default: asc
+ required:
+ - field
+ SearchQueryResponse:
+ type: object
+ properties:
+ page:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryPageResponse"
+ type: object
+ SearchQueryPageResponse:
+ type: object
+ properties:
+ totalItems:
+ type: integer
+ format: int64
+ firstSortValues:
+ type: array
+ items:
+ type: object
+ lastSortValues:
+ type: array
+ items:
+ type: object
+ VariableValueFilterRequest:
+ type: object
+ properties:
+ name:
+ type: string
+ eq:
+ type: object
+ neq:
+ type: object
+ gt:
+ type: object
+ gte:
+ type: object
+ lt:
+ type: object
+ lte:
+ type: object
+ DecisionRequirementsSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/DecisionRequirementsFilterRequest"
+ DecisionRequirementsFilterRequest:
+ type: object
+ properties:
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this decision requirements.
+ decisionRequirementsName:
+ type: string
+ description: The DMN name of the decision requirements.
+ version:
+ type: integer
+ format: int32
+ description: The assigned version of the decision requirements.
+ decisionRequirementsId:
+ type: string
+ description: the DMN id of the decision requirements.
+ tenantId:
+ type: string
+ description: The tenant ID of the decision requirements.
+ DecisionRequirementsSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/DecisionRequirementsItem"
+ DecisionRequirementsItem:
+ type: object
+ properties:
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this decision requirements.
+ decisionRequirementsName:
+ type: string
+ description: The DMN name of the decision requirements.
+ version:
+ type: integer
+ format: int32
+ description: The assigned version of the decision requirements.
+ decisionRequirementsId:
+ type: string
+ description: the DMN id of the decision requirements.
+ resourceName:
+ type: string
+ description: The name of the resource from which this decision requirements was parsed.
+ tenantId:
+ type: string
+ description: The tenant ID of the decision requirements.
+ EvaluateDecisionRequest:
+ type: object
+ oneOf:
+ - $ref: "#/components/schemas/EvaluateDecisionRequestByKey"
+ - $ref: "#/components/schemas/EvaluateDecisionRequestById"
+ EvaluateDecisionRequestByKey:
+ type: object
+ allOf:
+ - $ref: "#/components/schemas/EvaluateDecisionRequestBase"
+ properties:
+ decisionDefinitionKey:
+ description: |
+ The unique key identifying the decision to be evaluated.
+ Cannot be used together with decisionDefinitionId.
+ type: integer
+ format: int64
+ EvaluateDecisionRequestById:
+ type: object
+ allOf:
+ - $ref: "#/components/schemas/EvaluateDecisionRequestBase"
+ properties:
+ decisionDefinitionId:
+ description: |
+ The ID of the decision to be evaluated.
+ Cannot be used together with decisionDefinitionKey. When using the decision ID, the latest
+ deployed version of the decision is used.
+ type: string
+ EvaluateDecisionRequestBase:
+ type: object
+ properties:
+ variables:
+ description: The message variables as JSON document.
+ additionalProperties: true
+ type: object
+ tenantId:
+ description: The tenant ID of the decision.
+ type: string
+ EvaluateDecisionResponse:
+ type: object
+ properties:
+ decisionDefinitionKey:
+ description: The unique key identifying the decision which was evaluated.
+ type: integer
+ format: int64
+ decisionDefinitionId:
+ description: The ID of the decision which was evaluated.
+ type: string
+ decisionDefinitionName:
+ description: The name of the decision which was evaluated.
+ type: string
+ decisionDefinitionVersion:
+ description: The version of the decision which was evaluated.
+ type: integer
+ format: int32
+ decisionRequirementsId:
+ description: The ID of the decision requirements graph that the decision which was evaluated is part of.
+ type: string
+ decisionRequirementsKey:
+ description: The unique key identifying the decision requirements graph that the decision which was evaluated is part of.
+ type: integer
+ format: int64
+ output:
+ description: |
+ JSON document that will instantiate the result of the decision which was evaluated.
+ type: string
+ failedDecisionDefinitionId:
+ description: The ID of the decision which failed during evaluation.
+ type: string
+ failureMessage:
+ description: Message describing why the decision which was evaluated failed.
+ type: string
+ tenantId:
+ description: The tenant ID of the evaluated decision.
+ type: string
+ decisionInstanceKey:
+ description: The unique key identifying this decision evaluation.
+ type: integer
+ format: int64
+ evaluatedDecisions:
+ type: array
+ items:
+ $ref: "#/components/schemas/EvaluatedDecisionItem"
+ EvaluatedDecisionItem:
+ type: object
+ description: List of decisions that were evaluated within the requested decision evaluation.
+ properties:
+ decisionDefinitionKey:
+ description: The unique key identifying the decision which was evaluate.
+ type: integer
+ format: int64
+ decisionDefinitionId:
+ description: The ID of the decision which was evaluated.
+ type: string
+ decisionDefinitionName:
+ description: The name of the decision which was evaluated.
+ type: string
+ decisionDefinitionVersion:
+ description: The version of the decision which was evaluated.
+ type: integer
+ format: int32
+ decisionDefinitionType:
+ description: The type of the decision which was evaluated.
+ type: string
+ output:
+ description: |
+ JSON document that will instantiate the result of the decision which was evaluated.
+ type: string
+ tenantId:
+ description: The tenant ID of the evaluated decision.
+ type: string
+ matchedRules:
+ type: array
+ items:
+ $ref: "#/components/schemas/MatchedDecisionRuleItem"
+ evaluatedInputs:
+ type: array
+ items:
+ $ref: "#/components/schemas/EvaluatedDecisionInputItem"
+ MatchedDecisionRuleItem:
+ type: object
+ description: The decision rules that matched within this decision evaluation.
+ properties:
+ ruleId:
+ description: The ID of the matched rule.
+ type: string
+ ruleIndex:
+ description: The index of the matched rule.
+ type: integer
+ format: int32
+ evaluatedOutputs:
+ type: array
+ items:
+ $ref: "#/components/schemas/EvaluatedDecisionOutputItem"
+ EvaluatedDecisionInputItem:
+ type: object
+ description: The decision inputs that were evaluated within this decision evaluation.
+ properties:
+ inputId:
+ description: The ID of the evaluated decision input.
+ type: string
+ inputName:
+ description: The name of the evaluated decision input.
+ type: string
+ inputValue:
+ description: The value of the evaluated decision input.
+ type: string
+ EvaluatedDecisionOutputItem:
+ type: object
+ description: The evaluated decision outputs.
+ properties:
+ outputId:
+ description: The ID of the evaluated decision output.
+ type: string
+ outputName:
+ description: The name of the evaluated decision output.
+ type: string
+ outputValue:
+ description: The value of the evaluated decision output.
+ type: string
+ DecisionInstanceSearchQueryRequest:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryRequest"
+ type: object
+ properties:
+ filter:
+ allOf:
+ - $ref: "#/components/schemas/DecisionInstanceFilterRequest"
+ DecisionInstanceFilterRequest:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ description: The key of the decision instance.
+ state:
+ $ref: "#/components/schemas/DecisionInstanceStateEnum"
+ description: The state of the decision instance.
+ evaluationFailure:
+ type: string
+ description: The evaluation failure of the decision instance.
+ processDefinitionKey:
+ type: integer
+ format: int64
+ description: The key of the process definition.
+ processInstanceKey:
+ type: integer
+ format: int64
+ description: The key of the process instance.
+ decisionDefinitionKey:
+ type: integer
+ format: int64
+ description: The key of the decision.
+ decisionDefinitionId:
+ type: string
+ description: The ID of the DMN decision.
+ decisionDefinitionName:
+ type: string
+ description: The name of the DMN decision.
+ decisionDefinitionVersion:
+ type: integer
+ format: int32
+ description: The version of the decision.
+ decisionDefinitionType:
+ $ref: "#/components/schemas/DecisionInstanceTypeEnum"
+ description: The type of the decision.
+ tenantId:
+ type: string
+ description: The tenant ID of the decision instance.
+ DecisionInstanceSearchQueryResponse:
+ allOf:
+ - $ref: "#/components/schemas/SearchQueryResponse"
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ $ref: "#/components/schemas/DecisionInstanceItem"
+
+ DecisionInstanceItem:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ description: The key of the decision instance.
+ state:
+ $ref: "#/components/schemas/DecisionInstanceStateEnum"
+ description: The state of the decision instance.
+ evaluationDate:
+ type: string
+ format: date-time
+ description: The evaluation date of the decision instance.
+ evaluationFailure:
+ type: string
+ description: The evaluation failure of the decision instance.
+ processDefinitionKey:
+ type: integer
+ format: int64
+ description: The key of the process definition.
+ processInstanceKey:
+ type: integer
+ format: int64
+ description: The key of the process instance.
+ decisionDefinitionKey:
+ type: integer
+ format: int64
+ description: The key of the decision.
+ decisionDefinitionId:
+ type: string
+ description: The ID of the DMN decision.
+ decisionDefinitionName:
+ type: string
+ description: The name of the DMN decision.
+ decisionDefinitionVersion:
+ type: integer
+ format: int32
+ description: The version of the decision.
+ decisionDefinitionType:
+ $ref: "#/components/schemas/DecisionInstanceTypeEnum"
+ description: The type of the decision.
+ result:
+ type: string
+ description: The result of the decision instance.
+ tenantId:
+ type: string
+ description: The tenant ID of the decision instance.
+
+ DecisionInstanceTypeEnum:
+ enum:
+ - DECISION
+ - DECISION_TABLE
+ - LITERAL_EXPRESSION
+ - RELATION
+ - UNSPECIFIED
+ - UNKNOWN
+ DecisionInstanceStateEnum:
+ enum:
+ - EVALUATED
+ - FAILED
+ - UNKNOWN
+ - UNSPECIFIED
+
+ MessageCorrelationRequest:
+ type: object
+ properties:
+ name:
+ description: >
+ The message name as defined in the BPMN process
+ type: string
+ correlationKey:
+ description: The correlation key of the message
+ type: string
+ default: ""
+ variables:
+ description: The message variables as JSON document
+ additionalProperties: true
+ type: object
+ nullable: true
+ tenantId:
+ description: the tenant for which the message is published
+ type: string
+ nullable: true
+ MessageCorrelationResponse:
+ description: |
+ The message key of the correlated message, as well as the first process instance key it
+ correlated with.
+ type: object
+ properties:
+ messageKey:
+ description: The key of the correlated message
+ type: integer
+ format: int64
+ tenantId:
+ description: The tenant ID of the correlated message
+ type: string
+ processInstanceKey:
+ description: The key of the first process instance the message correlated with
+ type: integer
+ format: int64
+ MessagePublicationRequest:
+ type: object
+ properties:
+ name:
+ description: The name of the message.
+ type: string
+ correlationKey:
+ description: The correlation key of the message.
+ type: string
+ default: ""
+ timeToLive:
+ description: Timespan (in ms) to buffer the message on the broker.
+ type: integer
+ format: int64
+ default: 0
+ messageId:
+ description: |
+ The unique ID of the message. Only useful to ensure only one message with the given ID
+ will ever be published (during its lifetime).
+ type: string
+ nullable: true
+ variables:
+ description: The message variables as JSON document.
+ additionalProperties: true
+ type: object
+ nullable: true
+ tenantId:
+ description: The tenant of the message sender.
+ type: string
+ nullable: true
+ required:
+ - name
+ - correlationKey
+ MessagePublicationResponse:
+ description: The message key of the published message.
+ type: object
+ properties:
+ messageKey:
+ description: The key of the message
+ type: integer
+ format: int64
+ tenantId:
+ description: The tenant ID of the message.
+ type: string
+
+ DocumentReference:
+ type: object
+ properties:
+ documentType:
+ type: string
+ description: Document discriminator. Always set to "camunda".
+ enum:
+ - camunda
+ storeId:
+ type: string
+ description: The ID of the document store.
+ documentId:
+ type: string
+ description: The ID of the document.
+ metadata:
+ $ref: "#/components/schemas/DocumentMetadata"
+ DocumentMetadata:
+ type: object
+ additionalProperties: true
+ properties:
+ contentType:
+ type: string
+ description: The content type of the document.
+ fileName:
+ type: string
+ description: The name of the file.
+ expiresAt:
+ type: string
+ format: date-time
+ description: The date and time when the document expires.
+ size:
+ type: integer
+ format: int64
+ description: The size of the document in bytes.
+ DocumentLinkRequest:
+ type: object
+ properties:
+ expiresAt:
+ type: string
+ format: date-time
+ description: The date and time when the link expires.
+ nullable: true
+ DocumentLink:
+ type: object
+ properties:
+ url:
+ type: string
+ description: The link to the document.
+ expiresAt:
+ type: string
+ format: date-time
+ description: The date and time when the link expires.
+
+ DeploymentResponse:
+ type: object
+ properties:
+ deploymentKey:
+ type: integer
+ format: int64
+ description: The unique key identifying the deployment.
+ deployments:
+ type: array
+ items:
+ $ref: "#/components/schemas/DeploymentMetadata"
+ tenantId:
+ type: string
+ DeploymentMetadata:
+ type: object
+ properties:
+ processDefinition:
+ $ref: "#/components/schemas/DeploymentProcess"
+ decisionDefinition:
+ $ref: "#/components/schemas/DeploymentDecision"
+ decisionRequirements:
+ $ref: "#/components/schemas/DeploymentDecisionRequirements"
+ form:
+ $ref: "#/components/schemas/DeploymentForm"
+ DeploymentProcess:
+ type: object
+ properties:
+ processDefinitionId:
+ type: string
+ description: |
+ The bpmn process ID, as parsed during deployment, together with the version forms a
+ unique identifier for a specific process definition.
+ processDefinitionVersion:
+ type: integer
+ format: int32
+ description: The assigned process version.
+ processDefinitionKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this process.
+ resourceName:
+ type: string
+ description: The resource name from which this process was parsed.
+ tenantId:
+ type: string
+ description: The tenant ID of the deployed process.
+ DeploymentDecision:
+ type: object
+ properties:
+ decisionDefinitionId:
+ type: string
+ description: |
+ The dmn decision ID, as parsed during deployment, together with the version forms a
+ unique identifier for a specific decision.
+ version:
+ type: integer
+ format: int32
+ description: The assigned decision version.
+ decisionDefinitionKey:
+ type: integer
+ format: int64
+ description: |
+ The assigned decision key, which acts as a unique identifier for this decision.
+ name:
+ type: string
+ description: The DMN name of the decision, as parsed during deployment.
+ tenantId:
+ type: string
+ description: The tenant ID of the deployed decision.
+ decisionRequirementsId:
+ type: string
+ description: |
+ The dmn ID of the decision requirements graph that this decision is part of, as parsed during deployment.
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: |
+ The assigned key of the decision requirements graph that this decision is part of.
+ DeploymentDecisionRequirements:
+ type: object
+ properties:
+ decisionRequirementsId:
+ type: string
+ description: |
+ The dmn decision requirements ID, as parsed during deployment; together with the versions forms a unique identifier for a specific decision.
+ version:
+ type: integer
+ format: int32
+ description: The assigned decision requirements version.
+ decisionRequirementsName:
+ type: string
+ description: The DMN name of the decision requirements, as parsed during deployment.
+ tenantId:
+ type: string
+ description: The tenant ID of the deployed decision requirements.
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ description: |
+ The assigned decision requirements key, which acts as a unique identifier for this decision requirements.
+ resourceName:
+ type: string
+ description: The resource name from which this decision requirements was parsed.
+ DeploymentForm:
+ type: object
+ properties:
+ formId:
+ type: string
+ description: |
+ The form ID, as parsed during deployment, together with the version forms a
+ unique identifier for a specific form.
+ version:
+ type: integer
+ format: int32
+ description: The assigned form version.
+ formKey:
+ type: integer
+ format: int64
+ description: The assigned key, which acts as a unique identifier for this form.
+ resourceName:
+ type: string
+ description: The resource name from which this form was parsed.
+ tenantId:
+ type: string
+ description: The tenant ID of the deployed form.
+
+ CreateProcessInstanceRequest:
+ type: object
+ oneOf:
+ - $ref: "#/components/schemas/CreateProcessInstanceRequestByKey"
+ - $ref: "#/components/schemas/CreateProcessInstanceRequestById"
+ CreateProcessInstanceRequestByKey:
+ type: object
+ allOf:
+ - $ref: "#/components/schemas/CreateProcessInstanceRequestBase"
+ properties:
+ processDefinitionKey:
+ description: |
+ The unique key identifying the process definition, e.g. returned for a process in the
+ deploy resources endpoint. Cannot be used together with processDefinitionId.
+ type: integer
+ format: int64
+ CreateProcessInstanceRequestById:
+ type: object
+ allOf:
+ - $ref: "#/components/schemas/CreateProcessInstanceRequestBase"
+ properties:
+ processDefinitionId:
+ description: |
+ The BPMN process ID of the process definition to start an instance of.
+ Cannot be used together with processDefinitionKey.
+ type: string
+ processDefinitionVersion:
+ description: |
+ The version of the process. Only considered when a processDefinitionId is provided.
+ By default, the latest version of the process is used.
+ type: integer
+ format: int32
+ default: -1
+ CreateProcessInstanceRequestBase:
+ type: object
+ properties:
+ variables:
+ description: |
+ JSON object that will instantiate the variables for the root variable scope
+ of the process instance.
+ type: object
+ additionalProperties: true
+ tenantId:
+ description: The tenant ID of the process definition.
+ type: string
+ operationReference:
+ description: |
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be >0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+ startInstructions:
+ description: |
+ List of start instructions. By default, the process instance will start at
+ the start event. If provided, the process instance will apply start instructions
+ after it has been created.
+ type: array
+ items:
+ $ref: "#/components/schemas/ProcessInstanceCreationStartInstruction"
+ awaitCompletion:
+ description: |
+ Wait for the process instance to complete. If the process instance completion does
+ not occur within the requestTimeout, the request will be closed. Disabled by default.
+ type: boolean
+ default: false
+ fetchVariables:
+ description: |
+ List of variables names to be included in the response.
+ If empty, all visible variables in the root scope will be returned.
+ type: array
+ items:
+ type: string
+ requestTimeout:
+ description: |
+ Timeout (in ms) the request waits for the process to complete. By default or
+ when set to 0, the generic request timeout configured in the cluster is applied.
+ type: integer
+ format: int64
+ ProcessInstanceCreationStartInstruction:
+ type: object
+ properties:
+ elementId:
+ description: |
+ Future extensions might include:
+ - different types of start instructions
+ - ability to set local variables for different flow scopes
+
+ For now, however, the start instruction is implicitly a "startBeforeElement" instruction
+ type: string
+ CreateProcessInstanceResponse:
+ type: object
+ properties:
+ processDefinitionKey:
+ description: |
+ The key of the process definition which was used to create the process instance.
+ type: integer
+ format: int64
+ processDefinitionId:
+ description: |
+ The BPMN process ID of the process definition which was used to create the process.
+ instance
+ type: string
+ processDefinitionVersion:
+ description: |
+ The version of the process definition which was used to create the process instance.
+ type: integer
+ format: int32
+ processInstanceKey:
+ description: |
+ The unique identifier of the created process instance; to be used wherever a request
+ needs a process instance key (e.g. CancelProcessInstanceRequest).
+ type: integer
+ format: int64
+ tenantId:
+ description: The tenant ID of the created process instance.
+ type: string
+ variables:
+ additionalProperties: true
+ description: All the variables visible in the root scope.
+ type: object
+ MigrateProcessInstanceRequest:
+ type: object
+ properties:
+ targetProcessDefinitionKey:
+ description: The key of process definition to migrate the process instance to.
+ type: integer
+ format: int64
+ mappingInstructions:
+ type: array
+ items:
+ $ref: "#/components/schemas/MigrateProcessInstanceMappingInstruction"
+ operationReference:
+ description: >
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be > 0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+ required:
+ - targetProcessDefinitionKey
+ - mappingInstructions
+ MigrateProcessInstanceMappingInstruction:
+ type: object
+ description: |
+ The mapping instructions describe how to map elements from the source process definition to the target process definition.
+ properties:
+ sourceElementId:
+ description: The element ID to migrate from.
+ type: string
+ targetElementId:
+ description: The element ID to migrate into.
+ type: string
+ required:
+ - sourceElementId
+ - targetElementId
+ ModifyProcessInstanceRequest:
+ type: object
+ properties:
+ activateInstructions:
+ type: array
+ items:
+ $ref: "#/components/schemas/ModifyProcessInstanceActivateInstruction"
+ terminateInstructions:
+ type: array
+ items:
+ $ref: "#/components/schemas/ModifyProcessInstanceTerminateInstruction"
+ operationReference:
+ description: >
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be > 0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+ ModifyProcessInstanceActivateInstruction:
+ type: object
+ description: |
+ Instructions describing which elements should be activated in which scopes and which variables should be created.
+ properties:
+ elementId:
+ description: The ID of the element that should be activated.
+ type: string
+ ancestorElementInstanceKey:
+ description: |
+ The key of the ancestor scope the element instance should be created in.
+ Set to -1 to create the new element instance within an existing element instance of the
+ flow scope.
+ type: integer
+ format: int64
+ default: -1
+ variableInstructions:
+ type: array
+ items:
+ $ref: "#/components/schemas/ModifyProcessInstanceVariableInstruction"
+ required:
+ - elementId
+ ModifyProcessInstanceVariableInstruction:
+ type: object
+ description: Instructions describing which variables should be created.
+ properties:
+ variables:
+ description: |
+ JSON document that will instantiate the variables for the root variable scope of the process instance.
+ It must be a JSON object, as variables will be mapped in a key-value fashion.
+ additionalProperties: true
+ type: object
+ scopeId:
+ description: |
+ The ID of the element in which scope the variables should be created.
+ Leave empty to create the variables in the global scope of the process instance
+ type: string
+ default: ""
+ required:
+ - variables
+ ModifyProcessInstanceTerminateInstruction:
+ type: object
+ description: Instructions describing which elements should be terminated.
+ properties:
+ elementInstanceKey:
+ description: The ID of the element that should be terminated.
+ type: integer
+ format: int64
+ required:
+ - elementInstanceKey
+
+ SetVariableRequest:
+ type: object
+ properties:
+ variables:
+ description: JSON object representing the variables to set in the element’s scope.
+ additionalProperties: true
+ type: object
+ local:
+ description: |
+ If set to true, the variables are merged strictly into the local scope (as specified by the `elementInstanceKey`).
+ Otherwise, the variables are propagated to upper scopes and set at the outermost one.
+
+ Let’s consider the following example:
+
+ There are two scopes '1' and '2'.
+ Scope '1' is the parent scope of '2'. The effective variables of the scopes are:
+ 1 => { "foo" : 2 }
+ 2 => { "bar" : 1 }
+
+ An update request with elementInstanceKey as '2', variables { "foo" : 5 }, and local set
+ to true leaves scope '1' unchanged and adjusts scope '2' to { "bar" : 1, "foo" 5 }.
+
+ By default, with local set to false, scope '1' will be { "foo": 5 }
+ and scope '2' will be { "bar" : 1 }.
+ type: boolean
+ default: false
+ operationReference:
+ description: >
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be > 0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+ required:
+ - variables
+
+ DeleteResourceRequest:
+ type: object
+ nullable: true
+ properties:
+ operationReference:
+ description: |
+ A reference key chosen by the user that will be part of all records resulting from this operation.
+ Must be > 0 if provided.
+ type: integer
+ format: int64
+ minimum: 1
+
+ SignalBroadcastRequest:
+ type: object
+ properties:
+ signalName:
+ description: The name of the signal to broadcast.
+ type: string
+ variables:
+ additionalProperties: true
+ description: The signal variables as a JSON object.
+ type: object
+ tenantId:
+ description: The ID of the tenant that owns the signal.
+ type: string
+ required:
+ - signalName
+ SignalBroadcastResponse:
+ type: object
+ properties:
+ signalKey:
+ description: The unique ID of the signal that was broadcast.
+ type: integer
+ format: int64
+ tenantId:
+ description: The tenant ID of the signal that was broadcast.
+ type: string
+
+ securitySchemes:
+ bearerAuth:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/generate-api-docs.js b/api/generate-api-docs.js
index e8dd7335ebd..e6591537d92 100644
--- a/api/generate-api-docs.js
+++ b/api/generate-api-docs.js
@@ -1,60 +1,161 @@
const { execSync } = require("child_process");
-// More strategies to come, for other APIs.
+// Each API has a custom strategy, for modifying the schema or generated docs.
const operate = require("./operate/generation-strategy");
const tasklist = require("./tasklist/generation-strategy");
const adminsm = require("./administration-sm/generation-strategy");
const camunda = require("./camunda/generation-strategy");
+const zeebe = require("./zeebe/generation-strategy");
const apiStrategies = {
operate,
tasklist,
adminsm,
camunda,
+ zeebe,
};
-// Execute a command as if we were in the terminal
-function runCommand(command) {
- const result = execSync(command, { stdio: "inherit" });
- return result;
-}
-
// API name must be passed in as an arg.
-const api = process.argv[2];
-if (api === undefined) {
+const requestedAPI = process.argv[2];
+if (requestedAPI === undefined) {
const validAPIs = Object.keys(apiStrategies).join(", ");
console.log(`Please specify an API name. Valid names: ${validAPIs}`);
process.exit();
}
// The API name must be recognized.
-const strategy = apiStrategies[api];
+const strategy = apiStrategies[requestedAPI];
if (strategy === undefined) {
const validAPIs = Object.keys(apiStrategies).join(", ");
- console.error(`Invalid API name ${api}. Valid names: ${validAPIs}`);
+ console.error(`Invalid API name ${requestedAPI}. Valid names: ${validAPIs}`);
+ process.exit();
+}
+
+// Version is an optional argument. If not provided, we assume "vNext".
+const requestedVersion = process.argv[3];
+
+// Hack: zeebe API is removed at version 8.7, don't allow regeneration in vNext.
+if (requestedAPI === "zeebe" && requestedVersion === undefined) {
+ console.error("Zeebe API docs are no longer in active development.");
process.exit();
}
+// Find the corresponding configuration in docusaurus.config.js.
+const configs = loadAPIConfigs();
+const apiConfig = buildAPIConfig(configs, requestedAPI, requestedVersion);
+
// All APIs will execute these same steps, with custom-per-API steps
// implemented by each API's generation-strategy.js.
const steps = [
// Remove old docs
- () => runCommand(`docusaurus clean-api-docs ${api} -p api-${api}-openapi`),
+ () => runCommand(buildCleanCommand(apiConfig)),
// Run any custom steps before generation
- strategy.preGenerateDocs,
+ () => strategy.preGenerateDocs(apiConfig),
// Generate the docs
- () => runCommand(`docusaurus gen-api-docs ${api} -p api-${api}-openapi`),
+ () => runCommand(buildGenerateCommand(apiConfig)),
// Run any custom steps after generation
- strategy.postGenerateDocs,
+ () => strategy.postGenerateDocs(apiConfig),
// Run prettier against the generated docs. Twice. Yes, twice.
// I don't know why, but the first run always leaves an extra blank line,
// which the second execution removes.
- () => runCommand(`prettier --write ${strategy.outputDir}`),
- () => runCommand(`prettier --write ${strategy.outputDir}`),
+ () => runCommand(`prettier --write ${apiConfig.outputDir}`),
+ () => runCommand(`prettier --write ${apiConfig.outputDir}`),
];
// Run the steps!
steps.forEach((step) => step());
+
+// ---------- vvvvvvv helper functions vvvvvvv ----------
+
+// Execute a command as if we were in the terminal
+function runCommand(command) {
+ const result = execSync(command, { stdio: "inherit" });
+ return result;
+}
+
+// Load the API configs from the docusaurus.config.js file.
+function loadAPIConfigs() {
+ const config = require("../docusaurus.config");
+ const apiConfigs = config.plugins
+ .filter(
+ (plugin) =>
+ Array.isArray(plugin) && plugin[0] === "docusaurus-plugin-openapi-docs"
+ )
+ .reduce((acc, plugin) => {
+ const [_, options] = plugin;
+ configObject = options.config;
+ const apiName = Object.keys(configObject)[0];
+ acc[apiName] = configObject[apiName];
+ return acc;
+ }, {});
+
+ // Reduce should give a shape like this:
+ // {
+ // "operate": {
+ // "specPath": "api/operate/operate-openapi.yaml",
+ // "outputDir": "docs/apis-tools/operate-api/specifications",
+ // ...
+ // "versions": {
+ // "8.6": {
+ // "specPath": "api/operate/version-8.6/operate-openapi.yaml",
+ // "outputDir": "versioned_docs/version-8.6/apis-tools/operate-api/specifications",
+ // ...
+ // }
+ // }
+ // },
+ // "tasklist": {
+ // ....
+
+ return apiConfigs;
+}
+
+// Find the API config for the given API and version.
+function buildAPIConfig(apiConfigs, requestedAPI, requestedVersion) {
+ const apiConfig = apiConfigs[requestedAPI];
+ if (apiConfig === undefined) {
+ console.error(
+ `No configuration found for API ${requestedAPI}. Check docusaurus.config.js.`
+ );
+ process.exit();
+ }
+
+ let matchingConfig = apiConfig;
+
+ if (requestedVersion !== undefined) {
+ matchingConfig = apiConfig.versions[requestedVersion];
+ if (matchingConfig === undefined) {
+ console.error(
+ `No config found for API ${requestedAPI} version ${requestedVersion}. Check docusaurus.config.js.`
+ );
+ process.exit();
+ }
+ }
+
+ return {
+ apiName: requestedAPI,
+ specPath: matchingConfig.specPath,
+ outputDir: matchingConfig.outputDir,
+ version: requestedVersion || "next",
+ };
+}
+
+// Build the command to clean the API docs.
+function buildCleanCommand(apiConfig) {
+ const { apiName, version } = apiConfig;
+ if (version === "next") {
+ return `docusaurus clean-api-docs ${apiName} -p api-${apiName}-openapi`;
+ }
+ return `docusaurus clean-api-docs:version ${apiName}:${version} -p api-${apiName}-openapi`;
+}
+
+// Build the command to generate the API docs.
+function buildGenerateCommand(apiConfig) {
+ const { apiName, version } = apiConfig;
+ if (version === "next") {
+ return `docusaurus gen-api-docs ${apiName} -p api-${apiName}-openapi`;
+ }
+ return `docusaurus gen-api-docs:version ${apiName}:${version} -p api-${apiName}-openapi`;
+}
diff --git a/api/operate/generation-strategy.js b/api/operate/generation-strategy.js
index 47d5f7dc2d6..892500ee571 100644
--- a/api/operate/generation-strategy.js
+++ b/api/operate/generation-strategy.js
@@ -1,19 +1,17 @@
const { makeServerDynamic } = require("../make-server-dynamic");
const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge");
-const outputDir = "docs/apis-tools/operate-api/specifications";
-const specFile = "api/operate/operate-openapi.yaml";
-
-function preGenerateDocs() {
- makeServerDynamic(specFile);
+function preGenerateDocs(config) {
+ makeServerDynamic(config.specPath);
}
-function postGenerateDocs() {
- removeDuplicateVersionBadge(`${outputDir}/operate-public-api.info.mdx`);
+function postGenerateDocs(config) {
+ removeDuplicateVersionBadge(
+ `${config.outputDir}/operate-public-api.info.mdx`
+ );
}
module.exports = {
- outputDir,
preGenerateDocs,
postGenerateDocs,
};
diff --git a/api/operate/version-8.4/operate-openapi.yaml b/api/operate/version-8.4/operate-openapi.yaml
new file mode 100644
index 00000000000..2ef6348a549
--- /dev/null
+++ b/api/operate/version-8.4/operate-openapi.yaml
@@ -0,0 +1,2000 @@
+---
+openapi: 3.0.1
+info:
+ title: Operate Public API
+ description:
+ To access active and completed process instances in Operate for monitoring
+ and troubleshooting
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: 1.0.0
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+tags:
+ - name: ProcessDefinition
+ description: Process Definition API
+ - name: DecisionDefinition
+ description: Decision Definition API
+ - name: DecisionInstance
+ description: Decision Instance API
+ - name: FlownodeInstance
+ description: Flownode Instance API
+ - name: Variable
+ description: Variable API
+ - name: ProcessInstance
+ description: Process Instance API
+ - name: DecisionRequirements
+ description: Decision Requirements API
+ - name: Incident
+ description: Incident API
+paths:
+ "/v1/variables/search":
+ post:
+ tags:
+ - Variable
+ summary: Search variables for process instances
+ operationId: search
+ requestBody:
+ description: Search variables
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryVariable"
+ examples:
+ All:
+ description: Returns all variables (default return list size is 10)
+ value: {}
+ Size:
+ description: "Returns 20 variables "
+ value:
+ size: 20
+ Filter and sort:
+ description:
+ Returns all variables with 'processInstanceKey' '9007199254741196'
+ sorted ascending by name
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ Paging:
+ description:
+ "Returns next variables for 'processInstanceKey' ascending
+ by 'name'. (Copy value of 'sortValues' field of previous results) "
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - small
+ - 9007199254741200
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsVariable"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/search":
+ post:
+ tags:
+ - ProcessInstance
+ summary: Search process instances
+ operationId: search_1
+ requestBody:
+ description: Search process instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessInstance"
+ examples:
+ All:
+ description:
+ Returns all process instances (default return list size
+ is 10)
+ value: {}
+ Sorted by field:
+ description: Returns process instances sorted ascending by bpmnProcessId
+ value:
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ Sorted and paged with size:
+ description:
+ "Returns max 3 process instances after 'bigVarProcess'
+ and key 6755399441055870 sorted ascending by bpmnProcessId \nTo
+ get the next page copy the value of 'sortValues' into 'searchAfter'
+ value.\nSort specification should match the searchAfter specification"
+ value:
+ size: 3
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ searchAfter:
+ - bigVarProcess
+ - 6755399441055870
+ Filtered and sorted:
+ description:
+ Returns max 50 process instances, filtered by processVersion
+ of 2 sorted ascending by bpmnProcessId
+ value:
+ filter:
+ processVersion: 2
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/search":
+ post:
+ tags:
+ - ProcessDefinition
+ summary: Search process definitions
+ operationId: search_2
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessDefinition"
+ examples:
+ All:
+ description: All process instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search process instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search process instances and sort by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search process instances, sort descending by name list
+ size of 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description:
+ "Search process instances,sort by name and page results
+ of size 5. \n To get the next page copy the value of 'sortValues'
+ into 'searchAfter' value.\nSort specification should match the searchAfter
+ specification"
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Called Process
+ - "2251799813687281"
+ "Filter and sort ":
+ description: Filter by version and sort by bpmnProcessId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/search":
+ post:
+ tags:
+ - Incident
+ summary: Search incidents
+ operationId: search_3
+ requestBody:
+ description: Search incidents
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryIncident"
+ examples:
+ All:
+ description: Returns all incidents (default return list size is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns incidents sorted descending by 'creationTime'
+ value:
+ sort:
+ - field: creationTime
+ order: DESC
+ Filter by field:
+ description:
+ Returns incidents filtered by 'type'. Field 'message'
+ can't be used for filter and sort
+ value:
+ filter:
+ type: UNHANDLED_ERROR_EVENT
+ Filter and sort:
+ description:
+ Filter by 'type' and 'processDefinitionKey', sorted descending
+ by 'creationTime'.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array).
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns incidents filtered by 'type' and 'processDefinitionKey',
+ sorted descending by 'creationTime' and paged from previous 'sortValues'
+ value.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsIncident"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/search":
+ post:
+ tags:
+ - FlownodeInstance
+ summary: Search flownode-instances
+ operationId: search_4
+ requestBody:
+ description: Search flownode-instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryFlowNodeInstance"
+ examples:
+ All:
+ description:
+ Returns all flownode instances (default return list size
+ is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns flownode instances sorted descending by 'endDate'
+ value:
+ sort:
+ - field: endDate
+ order: DESC
+ Filter by field:
+ description: Returns flownode instances filtered by 'incident'.
+ value:
+ filter:
+ incident: true
+ Filter and sort:
+ description: Filter by 'incident' , sorted descending by 'startDate'.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array). Choose an existing key from previous searches to
+ try this.
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns flownode instances filtered by 'incident' , sorted
+ ascending by 'startDate' and paged from previous 'sortValues' value.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: ASC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsFlowNodeInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/search":
+ post:
+ tags:
+ - DecisionRequirements
+ summary: Search decision requirements
+ operationId: search_5
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionRequirements"
+ examples:
+ All:
+ description: All decision requirements (default size is 10)
+ value: {}
+ Size of returned list:
+ description:
+ Search decision requirements and return list of size
+ 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision requirements and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision requirements, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision requirements, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Invoice Business Decisions
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionRequirementsId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionRequirementsId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionRequirements"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/search":
+ post:
+ tags:
+ - DecisionInstance
+ summary: Search decision instances
+ operationId: search_6
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionInstance"
+ examples:
+ All:
+ description: All decision instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision instances and sort ascending by decisionName
+ value:
+ sort:
+ - field: decisionName
+ order: ASC
+ Sort and size:
+ description:
+ Search decision instances, sort descending by decisionName,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision instances, sort ascending by decisionName, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: ASC
+ searchAfter:
+ - Invoice Classification
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by decisionVersion and sort by decisionId
+ value:
+ filter:
+ decisionVersion: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/search":
+ post:
+ tags:
+ - DecisionDefinition
+ summary: Search decision definitions
+ operationId: search_7
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionDefinition"
+ examples:
+ All:
+ description: All decision definitions (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision definitions and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision definitions and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision definitions, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision definitions, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Decide the Dish
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/variables/{key}":
+ get:
+ tags:
+ - Variable
+ summary: Get variable by key
+ operationId: byKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of variable
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Variable"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get process instance by key
+ operationId: byKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ delete:
+ tags:
+ - ProcessInstance
+ summary: Delete process instance and all dependant data by key
+ operationId: delete
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ChangeStatus"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/statistics":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get flow node statistic by process instance id
+ operationId: getStatistics
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description:
+ Success. Returns statistics for the given process instance,
+ grouped by flow nodes
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeStatistics"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/sequence-flows":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get sequence flows of process instance by key
+ operationId: sequenceFlowsByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ "*/*":
+ schema:
+ type: array
+ items:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition by key
+ operationId: byKey_2
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}/xml":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition as XML by key
+ operationId: xmlByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/{key}":
+ get:
+ tags:
+ - Incident
+ summary: Get incident by key
+ operationId: byKey_3
+ parameters:
+ - name: key
+ in: path
+ description: Key of incident
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Incident"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/{key}":
+ get:
+ tags:
+ - FlownodeInstance
+ summary: Get flow node instance by key
+ operationId: byKey_4
+ parameters:
+ - name: key
+ in: path
+ description: Key of flownode instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements by key
+ operationId: byKey_5
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}/xml":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements as XML by key
+ operationId: xmlByKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/{id}":
+ get:
+ tags:
+ - DecisionInstance
+ summary: Get decision instance by id
+ operationId: byId
+ parameters:
+ - name: id
+ in: path
+ description: Id of decision instance
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/{key}":
+ get:
+ tags:
+ - DecisionDefinition
+ summary: Get decision definition by key
+ operationId: byKey_6
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ format: int32
+ message:
+ type: string
+ instance:
+ type: string
+ type:
+ type: string
+ QueryVariable:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Variable"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ Sort:
+ type: object
+ properties:
+ field:
+ type: string
+ order:
+ type: string
+ enum:
+ - ASC
+ - DESC
+ Variable:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ scopeKey:
+ type: integer
+ format: int64
+ name:
+ type: string
+ value:
+ type: string
+ truncated:
+ type: boolean
+ tenantId:
+ type: string
+ ResultsVariable:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Variable"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processVersion:
+ type: integer
+ format: int32
+ bpmnProcessId:
+ type: string
+ parentKey:
+ type: integer
+ format: int64
+ parentFlowNodeInstanceKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - CANCELED
+ processDefinitionKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ parentProcessInstanceKey:
+ "$ref": "#/components/schemas/ProcessInstance"
+ QueryProcessInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessDefinition:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ bpmnProcessId:
+ type: string
+ tenantId:
+ type: string
+ QueryProcessDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ Incident:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - UNKNOWN
+ - IO_MAPPING_ERROR
+ - JOB_NO_RETRIES
+ - CONDITION_ERROR
+ - EXTRACT_VALUE_ERROR
+ - CALLED_ELEMENT_ERROR
+ - UNHANDLED_ERROR_EVENT
+ - MESSAGE_SIZE_EXCEEDED
+ - CALLED_DECISION_ERROR
+ - DECISION_EVALUATION_ERROR
+ - FORM_NOT_FOUND
+ message:
+ type: string
+ creationTime:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - MIGRATED
+ - RESOLVED
+ - PENDING
+ jobKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ QueryIncident:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Incident"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsIncident:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Incident"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ flowNodeId:
+ type: string
+ flowNodeName:
+ type: string
+ incidentKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - PROCESS
+ - SUB_PROCESS
+ - EVENT_SUB_PROCESS
+ - START_EVENT
+ - INTERMEDIATE_CATCH_EVENT
+ - INTERMEDIATE_THROW_EVENT
+ - BOUNDARY_EVENT
+ - END_EVENT
+ - SERVICE_TASK
+ - RECEIVE_TASK
+ - USER_TASK
+ - MANUAL_TASK
+ - TASK
+ - EXCLUSIVE_GATEWAY
+ - INCLUSIVE_GATEWAY
+ - PARALLEL_GATEWAY
+ - EVENT_BASED_GATEWAY
+ - SEQUENCE_FLOW
+ - MULTI_INSTANCE_BODY
+ - CALL_ACTIVITY
+ - BUSINESS_RULE_TASK
+ - SCRIPT_TASK
+ - SEND_TASK
+ - UNKNOWN
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - TERMINATED
+ incident:
+ type: boolean
+ tenantId:
+ type: string
+ QueryFlowNodeInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsFlowNodeInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionRequirements:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionRequirementsId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ resourceName:
+ type: string
+ tenantId:
+ type: string
+ QueryDecisionRequirements:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionRequirements:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionInstance:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ state:
+ type: string
+ enum:
+ - FAILED
+ - EVALUATED
+ - UNKNOWN
+ - UNSPECIFIED
+ evaluationDate:
+ type: string
+ evaluationFailure:
+ type: string
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ decisionDefinitionId:
+ type: string
+ decisionName:
+ type: string
+ decisionVersion:
+ type: integer
+ format: int32
+ decisionType:
+ type: string
+ enum:
+ - DECISION_TABLE
+ - LITERAL_EXPRESSION
+ - UNSPECIFIED
+ - UNKNOWN
+ result:
+ type: string
+ evaluatedInputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceInput"
+ evaluatedOutputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceOutput"
+ tenantId:
+ type: string
+ DecisionInstanceInput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ DecisionInstanceOutput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ ruleId:
+ type: string
+ ruleIndex:
+ type: integer
+ format: int32
+ QueryDecisionInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionDefinition:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ decisionRequirementsId:
+ type: string
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ decisionRequirementsName:
+ type: string
+ decisionRequirementsVersion:
+ type: integer
+ format: int32
+ tenantId:
+ type: string
+ QueryDecisionDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeStatistics:
+ type: object
+ properties:
+ activityId:
+ type: string
+ description: The id of the flow node for which the results are aggregated
+ active:
+ type: integer
+ description: The total number of active instances of the flow node
+ format: int64
+ canceled:
+ type: integer
+ description: The total number of canceled instances of the flow node
+ format: int64
+ incidents:
+ type: integer
+ description: The total number of incidents for the flow node
+ format: int64
+ completed:
+ type: integer
+ description: The total number of completed instances of the flow node
+ format: int64
+ ChangeStatus:
+ type: object
+ properties:
+ message:
+ type: string
+ deleted:
+ type: integer
+ format: int64
+ securitySchemes:
+ cookie:
+ type: apiKey
+ name: OPERATE-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/operate/version-8.5/operate-openapi.yaml b/api/operate/version-8.5/operate-openapi.yaml
new file mode 100644
index 00000000000..2ef6348a549
--- /dev/null
+++ b/api/operate/version-8.5/operate-openapi.yaml
@@ -0,0 +1,2000 @@
+---
+openapi: 3.0.1
+info:
+ title: Operate Public API
+ description:
+ To access active and completed process instances in Operate for monitoring
+ and troubleshooting
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: 1.0.0
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+tags:
+ - name: ProcessDefinition
+ description: Process Definition API
+ - name: DecisionDefinition
+ description: Decision Definition API
+ - name: DecisionInstance
+ description: Decision Instance API
+ - name: FlownodeInstance
+ description: Flownode Instance API
+ - name: Variable
+ description: Variable API
+ - name: ProcessInstance
+ description: Process Instance API
+ - name: DecisionRequirements
+ description: Decision Requirements API
+ - name: Incident
+ description: Incident API
+paths:
+ "/v1/variables/search":
+ post:
+ tags:
+ - Variable
+ summary: Search variables for process instances
+ operationId: search
+ requestBody:
+ description: Search variables
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryVariable"
+ examples:
+ All:
+ description: Returns all variables (default return list size is 10)
+ value: {}
+ Size:
+ description: "Returns 20 variables "
+ value:
+ size: 20
+ Filter and sort:
+ description:
+ Returns all variables with 'processInstanceKey' '9007199254741196'
+ sorted ascending by name
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ Paging:
+ description:
+ "Returns next variables for 'processInstanceKey' ascending
+ by 'name'. (Copy value of 'sortValues' field of previous results) "
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - small
+ - 9007199254741200
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsVariable"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/search":
+ post:
+ tags:
+ - ProcessInstance
+ summary: Search process instances
+ operationId: search_1
+ requestBody:
+ description: Search process instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessInstance"
+ examples:
+ All:
+ description:
+ Returns all process instances (default return list size
+ is 10)
+ value: {}
+ Sorted by field:
+ description: Returns process instances sorted ascending by bpmnProcessId
+ value:
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ Sorted and paged with size:
+ description:
+ "Returns max 3 process instances after 'bigVarProcess'
+ and key 6755399441055870 sorted ascending by bpmnProcessId \nTo
+ get the next page copy the value of 'sortValues' into 'searchAfter'
+ value.\nSort specification should match the searchAfter specification"
+ value:
+ size: 3
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ searchAfter:
+ - bigVarProcess
+ - 6755399441055870
+ Filtered and sorted:
+ description:
+ Returns max 50 process instances, filtered by processVersion
+ of 2 sorted ascending by bpmnProcessId
+ value:
+ filter:
+ processVersion: 2
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/search":
+ post:
+ tags:
+ - ProcessDefinition
+ summary: Search process definitions
+ operationId: search_2
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessDefinition"
+ examples:
+ All:
+ description: All process instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search process instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search process instances and sort by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search process instances, sort descending by name list
+ size of 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description:
+ "Search process instances,sort by name and page results
+ of size 5. \n To get the next page copy the value of 'sortValues'
+ into 'searchAfter' value.\nSort specification should match the searchAfter
+ specification"
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Called Process
+ - "2251799813687281"
+ "Filter and sort ":
+ description: Filter by version and sort by bpmnProcessId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/search":
+ post:
+ tags:
+ - Incident
+ summary: Search incidents
+ operationId: search_3
+ requestBody:
+ description: Search incidents
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryIncident"
+ examples:
+ All:
+ description: Returns all incidents (default return list size is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns incidents sorted descending by 'creationTime'
+ value:
+ sort:
+ - field: creationTime
+ order: DESC
+ Filter by field:
+ description:
+ Returns incidents filtered by 'type'. Field 'message'
+ can't be used for filter and sort
+ value:
+ filter:
+ type: UNHANDLED_ERROR_EVENT
+ Filter and sort:
+ description:
+ Filter by 'type' and 'processDefinitionKey', sorted descending
+ by 'creationTime'.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array).
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns incidents filtered by 'type' and 'processDefinitionKey',
+ sorted descending by 'creationTime' and paged from previous 'sortValues'
+ value.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsIncident"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/search":
+ post:
+ tags:
+ - FlownodeInstance
+ summary: Search flownode-instances
+ operationId: search_4
+ requestBody:
+ description: Search flownode-instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryFlowNodeInstance"
+ examples:
+ All:
+ description:
+ Returns all flownode instances (default return list size
+ is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns flownode instances sorted descending by 'endDate'
+ value:
+ sort:
+ - field: endDate
+ order: DESC
+ Filter by field:
+ description: Returns flownode instances filtered by 'incident'.
+ value:
+ filter:
+ incident: true
+ Filter and sort:
+ description: Filter by 'incident' , sorted descending by 'startDate'.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array). Choose an existing key from previous searches to
+ try this.
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns flownode instances filtered by 'incident' , sorted
+ ascending by 'startDate' and paged from previous 'sortValues' value.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: ASC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsFlowNodeInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/search":
+ post:
+ tags:
+ - DecisionRequirements
+ summary: Search decision requirements
+ operationId: search_5
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionRequirements"
+ examples:
+ All:
+ description: All decision requirements (default size is 10)
+ value: {}
+ Size of returned list:
+ description:
+ Search decision requirements and return list of size
+ 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision requirements and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision requirements, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision requirements, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Invoice Business Decisions
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionRequirementsId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionRequirementsId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionRequirements"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/search":
+ post:
+ tags:
+ - DecisionInstance
+ summary: Search decision instances
+ operationId: search_6
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionInstance"
+ examples:
+ All:
+ description: All decision instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision instances and sort ascending by decisionName
+ value:
+ sort:
+ - field: decisionName
+ order: ASC
+ Sort and size:
+ description:
+ Search decision instances, sort descending by decisionName,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision instances, sort ascending by decisionName, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: ASC
+ searchAfter:
+ - Invoice Classification
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by decisionVersion and sort by decisionId
+ value:
+ filter:
+ decisionVersion: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/search":
+ post:
+ tags:
+ - DecisionDefinition
+ summary: Search decision definitions
+ operationId: search_7
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionDefinition"
+ examples:
+ All:
+ description: All decision definitions (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision definitions and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision definitions and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision definitions, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision definitions, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Decide the Dish
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ required: true
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/variables/{key}":
+ get:
+ tags:
+ - Variable
+ summary: Get variable by key
+ operationId: byKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of variable
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Variable"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get process instance by key
+ operationId: byKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ delete:
+ tags:
+ - ProcessInstance
+ summary: Delete process instance and all dependant data by key
+ operationId: delete
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ChangeStatus"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/statistics":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get flow node statistic by process instance id
+ operationId: getStatistics
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description:
+ Success. Returns statistics for the given process instance,
+ grouped by flow nodes
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeStatistics"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/sequence-flows":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get sequence flows of process instance by key
+ operationId: sequenceFlowsByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ "*/*":
+ schema:
+ type: array
+ items:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition by key
+ operationId: byKey_2
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}/xml":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition as XML by key
+ operationId: xmlByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/{key}":
+ get:
+ tags:
+ - Incident
+ summary: Get incident by key
+ operationId: byKey_3
+ parameters:
+ - name: key
+ in: path
+ description: Key of incident
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Incident"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/{key}":
+ get:
+ tags:
+ - FlownodeInstance
+ summary: Get flow node instance by key
+ operationId: byKey_4
+ parameters:
+ - name: key
+ in: path
+ description: Key of flownode instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements by key
+ operationId: byKey_5
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}/xml":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements as XML by key
+ operationId: xmlByKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/{id}":
+ get:
+ tags:
+ - DecisionInstance
+ summary: Get decision instance by id
+ operationId: byId
+ parameters:
+ - name: id
+ in: path
+ description: Id of decision instance
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/{key}":
+ get:
+ tags:
+ - DecisionDefinition
+ summary: Get decision definition by key
+ operationId: byKey_6
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ format: int32
+ message:
+ type: string
+ instance:
+ type: string
+ type:
+ type: string
+ QueryVariable:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Variable"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ Sort:
+ type: object
+ properties:
+ field:
+ type: string
+ order:
+ type: string
+ enum:
+ - ASC
+ - DESC
+ Variable:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ scopeKey:
+ type: integer
+ format: int64
+ name:
+ type: string
+ value:
+ type: string
+ truncated:
+ type: boolean
+ tenantId:
+ type: string
+ ResultsVariable:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Variable"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processVersion:
+ type: integer
+ format: int32
+ bpmnProcessId:
+ type: string
+ parentKey:
+ type: integer
+ format: int64
+ parentFlowNodeInstanceKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - CANCELED
+ processDefinitionKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ parentProcessInstanceKey:
+ "$ref": "#/components/schemas/ProcessInstance"
+ QueryProcessInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessDefinition:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ bpmnProcessId:
+ type: string
+ tenantId:
+ type: string
+ QueryProcessDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ Incident:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - UNKNOWN
+ - IO_MAPPING_ERROR
+ - JOB_NO_RETRIES
+ - CONDITION_ERROR
+ - EXTRACT_VALUE_ERROR
+ - CALLED_ELEMENT_ERROR
+ - UNHANDLED_ERROR_EVENT
+ - MESSAGE_SIZE_EXCEEDED
+ - CALLED_DECISION_ERROR
+ - DECISION_EVALUATION_ERROR
+ - FORM_NOT_FOUND
+ message:
+ type: string
+ creationTime:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - MIGRATED
+ - RESOLVED
+ - PENDING
+ jobKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ QueryIncident:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Incident"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsIncident:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Incident"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ flowNodeId:
+ type: string
+ flowNodeName:
+ type: string
+ incidentKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - PROCESS
+ - SUB_PROCESS
+ - EVENT_SUB_PROCESS
+ - START_EVENT
+ - INTERMEDIATE_CATCH_EVENT
+ - INTERMEDIATE_THROW_EVENT
+ - BOUNDARY_EVENT
+ - END_EVENT
+ - SERVICE_TASK
+ - RECEIVE_TASK
+ - USER_TASK
+ - MANUAL_TASK
+ - TASK
+ - EXCLUSIVE_GATEWAY
+ - INCLUSIVE_GATEWAY
+ - PARALLEL_GATEWAY
+ - EVENT_BASED_GATEWAY
+ - SEQUENCE_FLOW
+ - MULTI_INSTANCE_BODY
+ - CALL_ACTIVITY
+ - BUSINESS_RULE_TASK
+ - SCRIPT_TASK
+ - SEND_TASK
+ - UNKNOWN
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - TERMINATED
+ incident:
+ type: boolean
+ tenantId:
+ type: string
+ QueryFlowNodeInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsFlowNodeInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionRequirements:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionRequirementsId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ resourceName:
+ type: string
+ tenantId:
+ type: string
+ QueryDecisionRequirements:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionRequirements:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionInstance:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ state:
+ type: string
+ enum:
+ - FAILED
+ - EVALUATED
+ - UNKNOWN
+ - UNSPECIFIED
+ evaluationDate:
+ type: string
+ evaluationFailure:
+ type: string
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ decisionDefinitionId:
+ type: string
+ decisionName:
+ type: string
+ decisionVersion:
+ type: integer
+ format: int32
+ decisionType:
+ type: string
+ enum:
+ - DECISION_TABLE
+ - LITERAL_EXPRESSION
+ - UNSPECIFIED
+ - UNKNOWN
+ result:
+ type: string
+ evaluatedInputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceInput"
+ evaluatedOutputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceOutput"
+ tenantId:
+ type: string
+ DecisionInstanceInput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ DecisionInstanceOutput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ ruleId:
+ type: string
+ ruleIndex:
+ type: integer
+ format: int32
+ QueryDecisionInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionDefinition:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ decisionRequirementsId:
+ type: string
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ decisionRequirementsName:
+ type: string
+ decisionRequirementsVersion:
+ type: integer
+ format: int32
+ tenantId:
+ type: string
+ QueryDecisionDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeStatistics:
+ type: object
+ properties:
+ activityId:
+ type: string
+ description: The id of the flow node for which the results are aggregated
+ active:
+ type: integer
+ description: The total number of active instances of the flow node
+ format: int64
+ canceled:
+ type: integer
+ description: The total number of canceled instances of the flow node
+ format: int64
+ incidents:
+ type: integer
+ description: The total number of incidents for the flow node
+ format: int64
+ completed:
+ type: integer
+ description: The total number of completed instances of the flow node
+ format: int64
+ ChangeStatus:
+ type: object
+ properties:
+ message:
+ type: string
+ deleted:
+ type: integer
+ format: int64
+ securitySchemes:
+ cookie:
+ type: apiKey
+ name: OPERATE-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/operate/version-8.6/operate-openapi.yaml b/api/operate/version-8.6/operate-openapi.yaml
new file mode 100644
index 00000000000..823e7248016
--- /dev/null
+++ b/api/operate/version-8.6/operate-openapi.yaml
@@ -0,0 +1,1999 @@
+---
+openapi: 3.0.1
+info:
+ title: Operate Public API
+ description:
+ To access active and completed process instances in Operate for monitoring
+ and troubleshooting
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: 1.0.0
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+tags:
+ - name: ProcessDefinition
+ description: Process Definition API
+ - name: DecisionDefinition
+ description: Decision Definition API
+ - name: DecisionInstance
+ description: Decision Instance API
+ - name: FlownodeInstance
+ description: Flownode Instance API
+ - name: Variable
+ description: Variable API
+ - name: ProcessInstance
+ description: Process Instance API
+ - name: DecisionRequirements
+ description: Decision Requirements API
+ - name: Incident
+ description: Incident API
+paths:
+ "/v1/variables/search":
+ post:
+ tags:
+ - Variable
+ summary: Search variables for process instances
+ operationId: search
+ requestBody:
+ description: Search variables
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryVariable"
+ examples:
+ All:
+ description: Returns all variables (default return list size is 10)
+ value: {}
+ Size:
+ description: "Returns 20 variables "
+ value:
+ size: 20
+ Filter and sort:
+ description:
+ Returns all variables with 'processInstanceKey' '9007199254741196'
+ sorted ascending by name
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ Paging:
+ description:
+ "Returns next variables for 'processInstanceKey' ascending
+ by 'name'. (Copy value of 'sortValues' field of previous results) "
+ value:
+ filter:
+ processInstanceKey: "9007199254741196"
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - small
+ - 9007199254741200
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsVariable"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/search":
+ post:
+ tags:
+ - ProcessInstance
+ summary: Search process instances
+ operationId: search_1
+ requestBody:
+ description: Search process instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessInstance"
+ examples:
+ All:
+ description:
+ Returns all process instances (default return list size
+ is 10)
+ value: {}
+ Sorted by field:
+ description: Returns process instances sorted ascending by bpmnProcessId
+ value:
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ Sorted and paged with size:
+ description:
+ "Returns max 3 process instances after 'bigVarProcess'
+ and key 6755399441055870 sorted ascending by bpmnProcessId \nTo
+ get the next page copy the value of 'sortValues' into 'searchAfter'
+ value.\nSort specification should match the searchAfter specification"
+ value:
+ size: 3
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ searchAfter:
+ - bigVarProcess
+ - 6755399441055870
+ Filtered and sorted:
+ description:
+ Returns max 50 process instances, filtered by processVersion
+ of 2 sorted ascending by bpmnProcessId
+ value:
+ filter:
+ processVersion: 2
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/search":
+ post:
+ tags:
+ - ProcessDefinition
+ summary: Search process definitions
+ operationId: search_2
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryProcessDefinition"
+ examples:
+ All:
+ description: All process instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search process instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search process instances and sort by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search process instances, sort descending by name list
+ size of 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description:
+ "Search process instances,sort by name and page results
+ of size 5. \n To get the next page copy the value of 'sortValues'
+ into 'searchAfter' value.\nSort specification should match the searchAfter
+ specification"
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Called Process
+ - "2251799813687281"
+ "Filter and sort ":
+ description: Filter by version and sort by bpmnProcessId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: bpmnProcessId
+ order: ASC
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsProcessDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/search":
+ post:
+ tags:
+ - Incident
+ summary: Search incidents
+ operationId: search_3
+ requestBody:
+ description: Search incidents
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryIncident"
+ examples:
+ All:
+ description: Returns all incidents (default return list size is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns incidents sorted descending by 'creationTime'
+ value:
+ sort:
+ - field: creationTime
+ order: DESC
+ Filter by field:
+ description:
+ Returns incidents filtered by 'type'. Field 'message'
+ can't be used for filter and sort
+ value:
+ filter:
+ type: UNHANDLED_ERROR_EVENT
+ Filter and sort:
+ description:
+ Filter by 'type' and 'processDefinitionKey', sorted descending
+ by 'creationTime'.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array).
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns incidents filtered by 'type' and 'processDefinitionKey',
+ sorted descending by 'creationTime' and paged from previous 'sortValues'
+ value.
+ value:
+ filter:
+ type: CALLED_ELEMENT_ERROR
+ processDefinitionKey: "2251799813686167"
+ sort:
+ - field: creationTime
+ order: DESC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsIncident"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/search":
+ post:
+ tags:
+ - FlownodeInstance
+ summary: Search flownode-instances
+ operationId: search_4
+ requestBody:
+ description: Search flownode-instances
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryFlowNodeInstance"
+ examples:
+ All:
+ description:
+ Returns all flownode instances (default return list size
+ is 10).
+ value: {}
+ Return 20 items:
+ description: Returns max 20 incidents.
+ value:
+ size: 20
+ Sort by field:
+ description: Returns flownode instances sorted descending by 'endDate'
+ value:
+ sort:
+ - field: endDate
+ order: DESC
+ Filter by field:
+ description: Returns flownode instances filtered by 'incident'.
+ value:
+ filter:
+ incident: true
+ Filter and sort:
+ description: Filter by 'incident' , sorted descending by 'startDate'.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: DESC
+ Page by key:
+ description:
+ Returns paged by using previous returned 'sortValues'
+ value (array). Choose an existing key from previous searches to
+ try this.
+ value:
+ searchAfter:
+ - 2251799813687785
+ Filter, sort and page:
+ description:
+ Returns flownode instances filtered by 'incident' , sorted
+ ascending by 'startDate' and paged from previous 'sortValues' value.
+ value:
+ filter:
+ incident: true
+ sort:
+ - field: startDate
+ order: ASC
+ searchAfter:
+ - 1646904085499
+ - 9007199254743288
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsFlowNodeInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/search":
+ post:
+ tags:
+ - DecisionRequirements
+ summary: Search decision requirements
+ operationId: search_5
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionRequirements"
+ examples:
+ All:
+ description: All decision requirements (default size is 10)
+ value: {}
+ Size of returned list:
+ description:
+ Search decision requirements and return list of size
+ 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision requirements and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision requirements, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision requirements, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Invoice Business Decisions
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionRequirementsId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionRequirementsId
+ order: ASC
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionRequirements"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/search":
+ post:
+ tags:
+ - DecisionInstance
+ summary: Search decision instances
+ operationId: search_6
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionInstance"
+ examples:
+ All:
+ description: All decision instances (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision instances and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision instances and sort ascending by decisionName
+ value:
+ sort:
+ - field: decisionName
+ order: ASC
+ Sort and size:
+ description:
+ Search decision instances, sort descending by decisionName,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision instances, sort ascending by decisionName, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: decisionName
+ order: ASC
+ searchAfter:
+ - Invoice Classification
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by decisionVersion and sort by decisionId
+ value:
+ filter:
+ decisionVersion: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionInstance"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/search":
+ post:
+ tags:
+ - DecisionDefinition
+ summary: Search decision definitions
+ operationId: search_7
+ requestBody:
+ description: Search examples
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/QueryDecisionDefinition"
+ examples:
+ All:
+ description: All decision definitions (default size is 10)
+ value: {}
+ Size of returned list:
+ description: Search decision definitions and return list of size 5
+ value:
+ size: 5
+ Sort:
+ description: Search decision definitions and sort ascending by name
+ value:
+ sort:
+ - field: name
+ order: ASC
+ Sort and size:
+ description:
+ Search decision definitions, sort descending by name,
+ and return list of size 5
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: DESC
+ Sort and page:
+ description: |-
+ Search decision definitions, sort ascending by name, and return page of size 5.
+ To get the next page, copy the value of 'sortValues' into 'searchAfter' value.
+ Sort specification should match the searchAfter specification.
+ value:
+ size: 5
+ sort:
+ - field: name
+ order: ASC
+ searchAfter:
+ - Decide the Dish
+ - "2251799813686550"
+ "Filter and sort ":
+ description: Filter by version and sort by decisionId
+ value:
+ filter:
+ version: 1
+ size: 50
+ sort:
+ - field: decisionId
+ order: ASC
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ResultsDecisionDefinition"
+ "400":
+ description: Data invalid
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Not Found
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/variables/{key}":
+ get:
+ tags:
+ - Variable
+ summary: Get variable by key
+ operationId: byKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of variable
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Variable"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get process instance by key
+ operationId: byKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ delete:
+ tags:
+ - ProcessInstance
+ summary: Delete process instance and all dependant data by key
+ operationId: delete
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ChangeStatus"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/statistics":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get flow node statistic by process instance id
+ operationId: getStatistics
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description:
+ Success. Returns statistics for the given process instance,
+ grouped by flow nodes
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeStatistics"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-instances/{key}/sequence-flows":
+ get:
+ tags:
+ - ProcessInstance
+ summary: Get sequence flows of process instance by key
+ operationId: sequenceFlowsByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ "*/*":
+ schema:
+ type: array
+ items:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition by key
+ operationId: byKey_2
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/process-definitions/{key}/xml":
+ get:
+ tags:
+ - ProcessDefinition
+ summary: Get process definition as XML by key
+ operationId: xmlByKey
+ parameters:
+ - name: key
+ in: path
+ description: Key of process definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/incidents/{key}":
+ get:
+ tags:
+ - Incident
+ summary: Get incident by key
+ operationId: byKey_3
+ parameters:
+ - name: key
+ in: path
+ description: Key of incident
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/Incident"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/flownode-instances/{key}":
+ get:
+ tags:
+ - FlownodeInstance
+ summary: Get flow node instance by key
+ operationId: byKey_4
+ parameters:
+ - name: key
+ in: path
+ description: Key of flownode instance
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements by key
+ operationId: byKey_5
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/drd/{key}/xml":
+ get:
+ tags:
+ - DecisionRequirements
+ summary: Get decision requirements as XML by key
+ operationId: xmlByKey_1
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision requirements
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ text/xml:
+ schema:
+ type: string
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-instances/{id}":
+ get:
+ tags:
+ - DecisionInstance
+ summary: Get decision instance by id
+ operationId: byId
+ parameters:
+ - name: id
+ in: path
+ description: Id of decision instance
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionInstance"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+ "/v1/decision-definitions/{key}":
+ get:
+ tags:
+ - DecisionDefinition
+ summary: Get decision definition by key
+ operationId: byKey_6
+ parameters:
+ - name: key
+ in: path
+ description: Key of decision definition
+ required: true
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: Success
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ "400":
+ description: Invalid request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: Forbidden
+ content:
+ "*/*":
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description: Requested resource not found
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description: API application error
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ security:
+ - bearer-key: []
+ - cookie: []
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ format: int32
+ message:
+ type: string
+ instance:
+ type: string
+ type:
+ type: string
+ QueryVariable:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Variable"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ Sort:
+ type: object
+ properties:
+ field:
+ type: string
+ order:
+ type: string
+ enum:
+ - ASC
+ - DESC
+ Variable:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ scopeKey:
+ type: integer
+ format: int64
+ name:
+ type: string
+ value:
+ type: string
+ truncated:
+ type: boolean
+ tenantId:
+ type: string
+ ResultsVariable:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Variable"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processVersion:
+ type: integer
+ format: int32
+ processVersionTag:
+ type: string
+ bpmnProcessId:
+ type: string
+ parentKey:
+ type: integer
+ format: int64
+ parentFlowNodeInstanceKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - CANCELED
+ incident:
+ type: boolean
+ processDefinitionKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ parentProcessInstanceKey:
+ "$ref": "#/components/schemas/ProcessInstance"
+ QueryProcessInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ ProcessDefinition:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ versionTag:
+ type: string
+ bpmnProcessId:
+ type: string
+ tenantId:
+ type: string
+ QueryProcessDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsProcessDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/ProcessDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ Incident:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - UNKNOWN
+ - IO_MAPPING_ERROR
+ - JOB_NO_RETRIES
+ - EXECUTION_LISTENER_NO_RETRIES
+ - CONDITION_ERROR
+ - EXTRACT_VALUE_ERROR
+ - CALLED_ELEMENT_ERROR
+ - UNHANDLED_ERROR_EVENT
+ - MESSAGE_SIZE_EXCEEDED
+ - CALLED_DECISION_ERROR
+ - DECISION_EVALUATION_ERROR
+ - FORM_NOT_FOUND
+ message:
+ type: string
+ creationTime:
+ type: string
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - MIGRATED
+ - RESOLVED
+ - PENDING
+ jobKey:
+ type: integer
+ format: int64
+ tenantId:
+ type: string
+ QueryIncident:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/Incident"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsIncident:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Incident"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeInstance:
+ type: object
+ properties:
+ key:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ processDefinitionKey:
+ type: integer
+ format: int64
+ startDate:
+ type: string
+ endDate:
+ type: string
+ flowNodeId:
+ type: string
+ flowNodeName:
+ type: string
+ incidentKey:
+ type: integer
+ format: int64
+ type:
+ type: string
+ enum:
+ - UNSPECIFIED
+ - PROCESS
+ - SUB_PROCESS
+ - EVENT_SUB_PROCESS
+ - START_EVENT
+ - INTERMEDIATE_CATCH_EVENT
+ - INTERMEDIATE_THROW_EVENT
+ - BOUNDARY_EVENT
+ - END_EVENT
+ - SERVICE_TASK
+ - RECEIVE_TASK
+ - USER_TASK
+ - MANUAL_TASK
+ - TASK
+ - EXCLUSIVE_GATEWAY
+ - INCLUSIVE_GATEWAY
+ - PARALLEL_GATEWAY
+ - EVENT_BASED_GATEWAY
+ - SEQUENCE_FLOW
+ - MULTI_INSTANCE_BODY
+ - CALL_ACTIVITY
+ - BUSINESS_RULE_TASK
+ - SCRIPT_TASK
+ - SEND_TASK
+ - UNKNOWN
+ state:
+ type: string
+ enum:
+ - ACTIVE
+ - COMPLETED
+ - TERMINATED
+ incident:
+ type: boolean
+ tenantId:
+ type: string
+ QueryFlowNodeInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsFlowNodeInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/FlowNodeInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionRequirements:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionRequirementsId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ resourceName:
+ type: string
+ tenantId:
+ type: string
+ QueryDecisionRequirements:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionRequirements:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionRequirements"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionInstance:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ state:
+ type: string
+ enum:
+ - FAILED
+ - EVALUATED
+ - UNKNOWN
+ - UNSPECIFIED
+ evaluationDate:
+ type: string
+ evaluationFailure:
+ type: string
+ processDefinitionKey:
+ type: integer
+ format: int64
+ processInstanceKey:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ decisionDefinitionId:
+ type: string
+ decisionName:
+ type: string
+ decisionVersion:
+ type: integer
+ format: int32
+ decisionType:
+ type: string
+ enum:
+ - DECISION_TABLE
+ - LITERAL_EXPRESSION
+ - UNSPECIFIED
+ - UNKNOWN
+ result:
+ type: string
+ evaluatedInputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceInput"
+ evaluatedOutputs:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstanceOutput"
+ tenantId:
+ type: string
+ DecisionInstanceInput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ DecisionInstanceOutput:
+ type: object
+ properties:
+ id:
+ type: string
+ name:
+ type: string
+ value:
+ type: string
+ ruleId:
+ type: string
+ ruleIndex:
+ type: integer
+ format: int32
+ QueryDecisionInstance:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionInstance"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionInstance:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionInstance"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ DecisionDefinition:
+ type: object
+ properties:
+ id:
+ type: string
+ key:
+ type: integer
+ format: int64
+ decisionId:
+ type: string
+ name:
+ type: string
+ version:
+ type: integer
+ format: int32
+ decisionRequirementsId:
+ type: string
+ decisionRequirementsKey:
+ type: integer
+ format: int64
+ decisionRequirementsName:
+ type: string
+ decisionRequirementsVersion:
+ type: integer
+ format: int32
+ tenantId:
+ type: string
+ QueryDecisionDefinition:
+ type: object
+ properties:
+ filter:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ size:
+ type: integer
+ format: int32
+ searchAfter:
+ type: array
+ items:
+ type: object
+ sort:
+ type: array
+ items:
+ "$ref": "#/components/schemas/Sort"
+ ResultsDecisionDefinition:
+ type: object
+ properties:
+ items:
+ type: array
+ items:
+ "$ref": "#/components/schemas/DecisionDefinition"
+ sortValues:
+ type: array
+ items:
+ type: object
+ total:
+ type: integer
+ format: int64
+ FlowNodeStatistics:
+ type: object
+ properties:
+ activityId:
+ type: string
+ description: The id of the flow node for which the results are aggregated
+ active:
+ type: integer
+ description: The total number of active instances of the flow node
+ format: int64
+ canceled:
+ type: integer
+ description: The total number of canceled instances of the flow node
+ format: int64
+ incidents:
+ type: integer
+ description: The total number of incidents for the flow node
+ format: int64
+ completed:
+ type: integer
+ description: The total number of completed instances of the flow node
+ format: int64
+ ChangeStatus:
+ type: object
+ properties:
+ message:
+ type: string
+ deleted:
+ type: integer
+ format: int64
+ securitySchemes:
+ cookie:
+ type: apiKey
+ name: OPERATE-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/remove-duplicate-version-badge.js b/api/remove-duplicate-version-badge.js
index 5f30a2deb49..60efc46963b 100644
--- a/api/remove-duplicate-version-badge.js
+++ b/api/remove-duplicate-version-badge.js
@@ -6,7 +6,7 @@ function removeDuplicateVersionBadge(generatedInfoFilePath) {
console.log("removing duplicate version badge...");
replace.sync({
files: generatedInfoFilePath,
- from: /^.*Version: .*$/m,
+ from: /]*\s*children=\{"Version: [^"]*"\}\s*>\n<\/span>\n/m,
to: "",
});
}
diff --git a/api/tasklist/generation-strategy.js b/api/tasklist/generation-strategy.js
index 3aa55a0c793..384db0851dd 100644
--- a/api/tasklist/generation-strategy.js
+++ b/api/tasklist/generation-strategy.js
@@ -2,30 +2,26 @@ const replace = require("replace-in-file");
const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge");
const { makeServerDynamic } = require("../make-server-dynamic");
-const outputDir = "docs/apis-tools/tasklist-api-rest/specifications";
-const specFile = "api/tasklist/tasklist-openapi.yaml";
-
-function preGenerateDocs() {
- fixImproperlyFormattedBreaks();
- makeServerDynamic(specFile);
+function preGenerateDocs(config) {
+ fixImproperlyFormattedBreaks(config.specPath);
+ makeServerDynamic(config.specPath);
}
-function postGenerateDocs() {
- removeDuplicateVersionBadge(`${outputDir}/tasklist-rest-api.info.mdx`);
+function postGenerateDocs(config) {
+ removeDuplicateVersionBadge(`${config.outputDir}/tasklist-rest-api.info.mdx`);
}
module.exports = {
- outputDir,
preGenerateDocs,
postGenerateDocs,
};
-function fixImproperlyFormattedBreaks() {
+function fixImproperlyFormattedBreaks(specPath) {
// The source spec has many ` ` tags in it, which is valid HTML,
// but docusaurus does not like it. Make them ` ` instead.
console.log("fixing break tags...");
replace.sync({
- files: specFile,
+ files: specPath,
from: / /g,
to: " ",
});
diff --git a/api/tasklist/version-8.4/tasklist-openapi.yaml b/api/tasklist/version-8.4/tasklist-openapi.yaml
new file mode 100644
index 00000000000..4242c1e1782
--- /dev/null
+++ b/api/tasklist/version-8.4/tasklist-openapi.yaml
@@ -0,0 +1,1018 @@
+---
+openapi: 3.0.1
+info:
+ title: Tasklist REST API
+ description:
+ Tasklist is a ready-to-use API application to rapidly implement business
+ processes alongside user tasks in Zeebe.
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: v1
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+security:
+ - cookie: []
+ bearer-key: []
+tags:
+ - name: Form
+ description: API to query forms.
+ - name: Task
+ description: API to query and manage tasks.
+ - name: Variables
+ description: API to query variables.
+paths:
+ "/v1/tasks/{taskId}/variables":
+ post:
+ tags:
+ - Task
+ summary: Save draft variables
+ description:
+ "This operation performs several actions:
Validates
+ the task and draft variables.
Deletes existing draft variables for
+ the task.
Checks for new draft variables. If a new variable's `name`
+ matches an existing one but the `value` differs, it is saved. In case of duplicate
+ draft variable names, the last variable's value is kept.
NOTE:
Invoking
+ this method successively will overwrite all existing draft variables. Only
+ draft variables submitted in the most recent request body will be persisted.
+ Therefore, ensure you include all necessary variables in each request to maintain
+ the intended variable set.
The UI does not currently display the values
+ for draft variables that are created via this endpoint.
"
+ operationId: saveDraftTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/SaveVariablesRequest"
+ required: true
+ responses:
+ "204":
+ description: On success returned.
+ content:
+ "*/*": {}
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ `CREATED` state). An error is returned if the task was not claimed
+ (assigned) before, except the case when JWT authentication token used. An
+ error is returned if the task is not assigned to the current user, except
+ the case when JWT authentication token used.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description:
+ An error is returned if an unexpected error occurs while persisting
+ draft task variables.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/variables/search":
+ post:
+ tags:
+ - Task
+ summary: Search task variables
+ description:
+ This method returns a list of task variables for the specified
+ `taskId` and `variableName`. If the request body is not provided or if
+ the `variableNames` parameter in the request is empty, all variables associated
+ with the task will be returned.
+ operationId: searchTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariablesSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/search":
+ post:
+ tags:
+ - Task
+ summary: Search tasks
+ description:
+ Returns the list of tasks that satisfy search request params.
If
+ an empty body is provided, all tasks are returned.
Only one of `[searchAfter,
+ searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must
+ be present in request.
+ operationId: searchTasks
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/TaskSearchResponse"
+ "400":
+ description:
+ An error is returned when more than one search parameters among
+ `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]`
+ are present in request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/unassign":
+ patch:
+ tags:
+ - Task
+ summary: Unassign a task
+ description: Unassign a task with `taskId`. Returns the task.
+ operationId: unassignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/complete":
+ patch:
+ tags:
+ - Task
+ summary: Complete a task
+ description:
+ Complete a task with `taskId` and optional `variables`. Returns
+ the task.
+ operationId: completeTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskCompleteRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before. An error is returned if the task is not assigned to the current
+ user.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/assign":
+ patch:
+ tags:
+ - Task
+ summary: Assign a task
+ description:
+ Assign a task with `taskId` to `assignee` or the active user. Returns
+ the task.
+ operationId: assignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ description:
+ When using REST API with JWT authentication token following request
+ body parameters may be used.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskAssignRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned when task was already assigned,
+ except the case when JWT authentication token used and `allowOverrideAssignment
+ = true`.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description:
+ An error is returned when user doesn't have the permission
+ to assign another user to this task.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/variables/{variableId}":
+ get:
+ tags:
+ - Variables
+ summary: Get a variable
+ description: Get the variable details by variable id.
+ operationId: getVariableById
+ parameters:
+ - name: variableId
+ in: path
+ description: The ID of the variable.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariableResponse"
+ "404":
+ description:
+ An error is returned when the variable with the `variableId`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}":
+ get:
+ tags:
+ - Task
+ summary: Get a task
+ description: Get one task by id. Returns task or error when task does not exist.
+ operationId: getTaskById
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/forms/{formId}":
+ get:
+ tags:
+ - Form
+ summary: Get a form
+ description:
+ Get the form details by `formId` and `processDefinitionKey` required
+ query param. The `version` query param is optional and is used only for deployed
+ forms (if empty, it retrieves the highest version).
+ operationId: getForm
+ parameters:
+ - name: formId
+ in: path
+ description: The ID of the form.
+ required: true
+ schema:
+ type: string
+ - name: processDefinitionKey
+ in: query
+ description: Reference to the process definition.
+ required: true
+ schema:
+ type: string
+ - name: version
+ in: query
+ description: The version of the form. Valid only for deployed forms.
+ required: false
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FormResponse"
+ "404":
+ description:
+ An error is returned when the form with the `formId` and `processDefinitionKey`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ description:
+ An integer that represents the HTTP status code of the error
+ response. For example, 400 indicates a 'Bad Request' error, 404 indicates
+ a 'Not Found' error, and so on.
+ format: int32
+ message:
+ type: string
+ description:
+ A string that provides a brief description of the error that
+ occurred.
+ instance:
+ type: string
+ description: Error instance UUID for lookup (e.g., in log messages).
+ SaveVariablesRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to the task.
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ VariableInputDTO:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ IncludeVariable:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ alwaysReturnFullValue:
+ type: boolean
+ description: Always return the full value of the variable?
+ default: false
+ VariablesSearchRequest:
+ type: object
+ properties:
+ variableNames:
+ type: array
+ description: Names of variables to find.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description: An array of variable names that should be included in the response.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ description: Request object to search tasks variables by provided variable names.
+ DraftSearchVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ description: The draft value of the variable.
+ VariableSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the variable.
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ draft:
+ "$ref": "#/components/schemas/DraftSearchVariableValue"
+ DateFilter:
+ type: object
+ properties:
+ from:
+ type: string
+ description:
+ Start date range to search from in date-time format outlined
+ in section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ to:
+ type: string
+ description:
+ End date range to search to in date-time format outlined in
+ section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ description: A range of due dates for the tasks to search for.
+ TaskByVariables:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ operator:
+ type: string
+ description:
+ "The comparison operator to use for the variable. * `eq`:
+ Equals"
+ enum:
+ - eq
+ TaskOrderBy:
+ type: object
+ properties:
+ field:
+ type: string
+ enum:
+ - completionTime
+ - creationTime
+ - followUpDate
+ - dueDate
+ order:
+ type: string
+ description: "* `ASC`: Ascending * `DESC`: Descending"
+ enum:
+ - ASC
+ - DESC
+ description: Sort results by a specific field.
+ TaskSearchRequest:
+ type: object
+ properties:
+ state:
+ type: string
+ description: The state of the tasks.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ assigned:
+ type: boolean
+ description: Are the tasks assigned?
+ assignee:
+ type: string
+ description: Who is assigned to the tasks?
+ assignees:
+ type: array
+ description: The assignee is one of the given assignees.
+ items:
+ type: string
+ description: The assignee is one of the given assignees.
+ taskDefinitionId:
+ type: string
+ description: What's the BPMN flow node?
+ candidateGroup:
+ type: string
+ description: Given group is in candidate groups list.
+ candidateGroups:
+ type: array
+ description: At least one of the given groups is in candidate groups list.
+ items:
+ type: string
+ description: At least one of the given groups is in candidate groups list.
+ candidateUser:
+ type: string
+ description: Given user is in candidate user list.
+ candidateUsers:
+ type: array
+ description: At least one of the given users is in candidate user list.
+ items:
+ type: string
+ description: At least one of the given users is in candidate user list.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of TaskQuery.processDefinitionId
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance (renamed equivalent of TaskQuery.processInstanceId
+ field)
+ pageSize:
+ type: integer
+ description: Size of tasks page (default = 50).
+ format: int32
+ followUpDate:
+ "$ref": "#/components/schemas/DateFilter"
+ dueDate:
+ "$ref": "#/components/schemas/DateFilter"
+ taskVariables:
+ type: array
+ description:
+ An array of filter clauses specifying the variables to filter
+ for. If defined, the query returns only tasks to which all clauses
+ apply. However, it's important to note that this filtering mechanism
+ is designed to work exclusively with truncated variables. This means variables
+ of a larger size are not compatible with this filter, and attempts
+ to use them may result in inaccurate or incomplete query results.
+ items:
+ "$ref": "#/components/schemas/TaskByVariables"
+ tenantIds:
+ type: array
+ description:
+ An array of Tenant IDs to filter tasks. When multi-tenancy
+ is enabled, tasks associated with the specified tenant IDs are returned; if
+ disabled, this parameter is ignored.
+ items:
+ type: string
+ sort:
+ type: array
+ description:
+ An array of objects specifying the fields to sort the results
+ by.
+ items:
+ "$ref": "#/components/schemas/TaskOrderBy"
+ searchAfter:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchAfterOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ searchBefore:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchBeforeOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description:
+ An array used to specify a list of variable names that should
+ be included in the response when querying tasks. This field allows
+ users to selectively retrieve specific variables associated with the tasks
+ returned in the search results.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ description: Request object to search tasks by provided params.
+ TaskSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User Task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ sortValues:
+ type: array
+ description:
+ Array of values to be copied into `TaskSearchRequest` to request
+ for next or previous page of tasks.
+ items:
+ type: string
+ isFirst:
+ type: boolean
+ description: A flag to show that the task is first in the current filter.
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ variables:
+ type: array
+ description:
+ An array of the task's variables. Only variables specified
+ in `TaskSearchRequest.includeVariables` are returned. Note that a variable's
+ draft value is not returned in `TaskSearchResponse`.
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ TaskResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User Task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ readOnly: true
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ TaskCompleteRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to task during the task completion
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ description:
+ Request object with variables to update or add to task during the
+ task completion.
+ TaskAssignRequest:
+ type: object
+ properties:
+ assignee:
+ type: string
+ description: |-
+ When using a JWT token, the assignee parameter is NOT optional when called directly from the API.
+ The system will not be able to detect the assignee from the JWT token, therefore the assignee parameter needs to be
+ explicitly passed in this instance.
+ allowOverrideAssignment:
+ type: boolean
+ description: |-
+ When `true` the task that is already assigned may be assigned again. Otherwise the task
+ must be first unassigned and only then assigned again.
+ default: true
+ description: Request params used to assign the task to assignee or current user.
+ DraftVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The draft value of the variable
+ VariableResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The ID of the variable
+ name:
+ type: string
+ description: The name of the variable
+ value:
+ type: string
+ description: The full value of the variable
+ draft:
+ "$ref": "#/components/schemas/DraftVariableValue"
+ tenantId:
+ type: string
+ description: The tenant ID associated with the variable
+ FormResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the embedded form within one process.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Form.processDefinitionId`
+ field).
+ title:
+ type: string
+ description: The title of the form.
+ schema:
+ type: string
+ description: The form content.
+ version:
+ type: integer
+ description:
+ The version field is null in the case of an embedded form,
+ while it represents the deployed form's version in other scenarios.
+ format: int64
+ tenantId:
+ type: string
+ description: The tenant ID associated with the form.
+ isDeleted:
+ type: boolean
+ description:
+ Indicates whether the deployed form is deleted or not on Zeebe.
+ This field is false by default, in the case of an embedded form.
+ securitySchemes:
+ cookie:
+ type: apiKey
+ description: Cookie-based authentication is only available on Self-Managed clusters.
+ name: TASKLIST-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/tasklist/version-8.5/tasklist-openapi.yaml b/api/tasklist/version-8.5/tasklist-openapi.yaml
new file mode 100644
index 00000000000..4242c1e1782
--- /dev/null
+++ b/api/tasklist/version-8.5/tasklist-openapi.yaml
@@ -0,0 +1,1018 @@
+---
+openapi: 3.0.1
+info:
+ title: Tasklist REST API
+ description:
+ Tasklist is a ready-to-use API application to rapidly implement business
+ processes alongside user tasks in Zeebe.
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: v1
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+security:
+ - cookie: []
+ bearer-key: []
+tags:
+ - name: Form
+ description: API to query forms.
+ - name: Task
+ description: API to query and manage tasks.
+ - name: Variables
+ description: API to query variables.
+paths:
+ "/v1/tasks/{taskId}/variables":
+ post:
+ tags:
+ - Task
+ summary: Save draft variables
+ description:
+ "This operation performs several actions:
Validates
+ the task and draft variables.
Deletes existing draft variables for
+ the task.
Checks for new draft variables. If a new variable's `name`
+ matches an existing one but the `value` differs, it is saved. In case of duplicate
+ draft variable names, the last variable's value is kept.
NOTE:
Invoking
+ this method successively will overwrite all existing draft variables. Only
+ draft variables submitted in the most recent request body will be persisted.
+ Therefore, ensure you include all necessary variables in each request to maintain
+ the intended variable set.
The UI does not currently display the values
+ for draft variables that are created via this endpoint.
"
+ operationId: saveDraftTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/SaveVariablesRequest"
+ required: true
+ responses:
+ "204":
+ description: On success returned.
+ content:
+ "*/*": {}
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ `CREATED` state). An error is returned if the task was not claimed
+ (assigned) before, except the case when JWT authentication token used. An
+ error is returned if the task is not assigned to the current user, except
+ the case when JWT authentication token used.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description:
+ An error is returned if an unexpected error occurs while persisting
+ draft task variables.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/variables/search":
+ post:
+ tags:
+ - Task
+ summary: Search task variables
+ description:
+ This method returns a list of task variables for the specified
+ `taskId` and `variableName`. If the request body is not provided or if
+ the `variableNames` parameter in the request is empty, all variables associated
+ with the task will be returned.
+ operationId: searchTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariablesSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/search":
+ post:
+ tags:
+ - Task
+ summary: Search tasks
+ description:
+ Returns the list of tasks that satisfy search request params.
If
+ an empty body is provided, all tasks are returned.
Only one of `[searchAfter,
+ searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must
+ be present in request.
+ operationId: searchTasks
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/TaskSearchResponse"
+ "400":
+ description:
+ An error is returned when more than one search parameters among
+ `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]`
+ are present in request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/unassign":
+ patch:
+ tags:
+ - Task
+ summary: Unassign a task
+ description: Unassign a task with `taskId`. Returns the task.
+ operationId: unassignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/complete":
+ patch:
+ tags:
+ - Task
+ summary: Complete a task
+ description:
+ Complete a task with `taskId` and optional `variables`. Returns
+ the task.
+ operationId: completeTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskCompleteRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before. An error is returned if the task is not assigned to the current
+ user.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/assign":
+ patch:
+ tags:
+ - Task
+ summary: Assign a task
+ description:
+ Assign a task with `taskId` to `assignee` or the active user. Returns
+ the task.
+ operationId: assignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ description:
+ When using REST API with JWT authentication token following request
+ body parameters may be used.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskAssignRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned when task was already assigned,
+ except the case when JWT authentication token used and `allowOverrideAssignment
+ = true`.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description:
+ An error is returned when user doesn't have the permission
+ to assign another user to this task.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/variables/{variableId}":
+ get:
+ tags:
+ - Variables
+ summary: Get a variable
+ description: Get the variable details by variable id.
+ operationId: getVariableById
+ parameters:
+ - name: variableId
+ in: path
+ description: The ID of the variable.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariableResponse"
+ "404":
+ description:
+ An error is returned when the variable with the `variableId`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}":
+ get:
+ tags:
+ - Task
+ summary: Get a task
+ description: Get one task by id. Returns task or error when task does not exist.
+ operationId: getTaskById
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/forms/{formId}":
+ get:
+ tags:
+ - Form
+ summary: Get a form
+ description:
+ Get the form details by `formId` and `processDefinitionKey` required
+ query param. The `version` query param is optional and is used only for deployed
+ forms (if empty, it retrieves the highest version).
+ operationId: getForm
+ parameters:
+ - name: formId
+ in: path
+ description: The ID of the form.
+ required: true
+ schema:
+ type: string
+ - name: processDefinitionKey
+ in: query
+ description: Reference to the process definition.
+ required: true
+ schema:
+ type: string
+ - name: version
+ in: query
+ description: The version of the form. Valid only for deployed forms.
+ required: false
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FormResponse"
+ "404":
+ description:
+ An error is returned when the form with the `formId` and `processDefinitionKey`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ description:
+ An integer that represents the HTTP status code of the error
+ response. For example, 400 indicates a 'Bad Request' error, 404 indicates
+ a 'Not Found' error, and so on.
+ format: int32
+ message:
+ type: string
+ description:
+ A string that provides a brief description of the error that
+ occurred.
+ instance:
+ type: string
+ description: Error instance UUID for lookup (e.g., in log messages).
+ SaveVariablesRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to the task.
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ VariableInputDTO:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ IncludeVariable:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ alwaysReturnFullValue:
+ type: boolean
+ description: Always return the full value of the variable?
+ default: false
+ VariablesSearchRequest:
+ type: object
+ properties:
+ variableNames:
+ type: array
+ description: Names of variables to find.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description: An array of variable names that should be included in the response.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ description: Request object to search tasks variables by provided variable names.
+ DraftSearchVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ description: The draft value of the variable.
+ VariableSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the variable.
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ draft:
+ "$ref": "#/components/schemas/DraftSearchVariableValue"
+ DateFilter:
+ type: object
+ properties:
+ from:
+ type: string
+ description:
+ Start date range to search from in date-time format outlined
+ in section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ to:
+ type: string
+ description:
+ End date range to search to in date-time format outlined in
+ section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ description: A range of due dates for the tasks to search for.
+ TaskByVariables:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ operator:
+ type: string
+ description:
+ "The comparison operator to use for the variable. * `eq`:
+ Equals"
+ enum:
+ - eq
+ TaskOrderBy:
+ type: object
+ properties:
+ field:
+ type: string
+ enum:
+ - completionTime
+ - creationTime
+ - followUpDate
+ - dueDate
+ order:
+ type: string
+ description: "* `ASC`: Ascending * `DESC`: Descending"
+ enum:
+ - ASC
+ - DESC
+ description: Sort results by a specific field.
+ TaskSearchRequest:
+ type: object
+ properties:
+ state:
+ type: string
+ description: The state of the tasks.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ assigned:
+ type: boolean
+ description: Are the tasks assigned?
+ assignee:
+ type: string
+ description: Who is assigned to the tasks?
+ assignees:
+ type: array
+ description: The assignee is one of the given assignees.
+ items:
+ type: string
+ description: The assignee is one of the given assignees.
+ taskDefinitionId:
+ type: string
+ description: What's the BPMN flow node?
+ candidateGroup:
+ type: string
+ description: Given group is in candidate groups list.
+ candidateGroups:
+ type: array
+ description: At least one of the given groups is in candidate groups list.
+ items:
+ type: string
+ description: At least one of the given groups is in candidate groups list.
+ candidateUser:
+ type: string
+ description: Given user is in candidate user list.
+ candidateUsers:
+ type: array
+ description: At least one of the given users is in candidate user list.
+ items:
+ type: string
+ description: At least one of the given users is in candidate user list.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of TaskQuery.processDefinitionId
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance (renamed equivalent of TaskQuery.processInstanceId
+ field)
+ pageSize:
+ type: integer
+ description: Size of tasks page (default = 50).
+ format: int32
+ followUpDate:
+ "$ref": "#/components/schemas/DateFilter"
+ dueDate:
+ "$ref": "#/components/schemas/DateFilter"
+ taskVariables:
+ type: array
+ description:
+ An array of filter clauses specifying the variables to filter
+ for. If defined, the query returns only tasks to which all clauses
+ apply. However, it's important to note that this filtering mechanism
+ is designed to work exclusively with truncated variables. This means variables
+ of a larger size are not compatible with this filter, and attempts
+ to use them may result in inaccurate or incomplete query results.
+ items:
+ "$ref": "#/components/schemas/TaskByVariables"
+ tenantIds:
+ type: array
+ description:
+ An array of Tenant IDs to filter tasks. When multi-tenancy
+ is enabled, tasks associated with the specified tenant IDs are returned; if
+ disabled, this parameter is ignored.
+ items:
+ type: string
+ sort:
+ type: array
+ description:
+ An array of objects specifying the fields to sort the results
+ by.
+ items:
+ "$ref": "#/components/schemas/TaskOrderBy"
+ searchAfter:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchAfterOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ searchBefore:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchBeforeOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description:
+ An array used to specify a list of variable names that should
+ be included in the response when querying tasks. This field allows
+ users to selectively retrieve specific variables associated with the tasks
+ returned in the search results.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ description: Request object to search tasks by provided params.
+ TaskSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User Task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ sortValues:
+ type: array
+ description:
+ Array of values to be copied into `TaskSearchRequest` to request
+ for next or previous page of tasks.
+ items:
+ type: string
+ isFirst:
+ type: boolean
+ description: A flag to show that the task is first in the current filter.
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ variables:
+ type: array
+ description:
+ An array of the task's variables. Only variables specified
+ in `TaskSearchRequest.includeVariables` are returned. Note that a variable's
+ draft value is not returned in `TaskSearchResponse`.
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ TaskResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User Task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ readOnly: true
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ TaskCompleteRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to task during the task completion
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ description:
+ Request object with variables to update or add to task during the
+ task completion.
+ TaskAssignRequest:
+ type: object
+ properties:
+ assignee:
+ type: string
+ description: |-
+ When using a JWT token, the assignee parameter is NOT optional when called directly from the API.
+ The system will not be able to detect the assignee from the JWT token, therefore the assignee parameter needs to be
+ explicitly passed in this instance.
+ allowOverrideAssignment:
+ type: boolean
+ description: |-
+ When `true` the task that is already assigned may be assigned again. Otherwise the task
+ must be first unassigned and only then assigned again.
+ default: true
+ description: Request params used to assign the task to assignee or current user.
+ DraftVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The draft value of the variable
+ VariableResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The ID of the variable
+ name:
+ type: string
+ description: The name of the variable
+ value:
+ type: string
+ description: The full value of the variable
+ draft:
+ "$ref": "#/components/schemas/DraftVariableValue"
+ tenantId:
+ type: string
+ description: The tenant ID associated with the variable
+ FormResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the embedded form within one process.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Form.processDefinitionId`
+ field).
+ title:
+ type: string
+ description: The title of the form.
+ schema:
+ type: string
+ description: The form content.
+ version:
+ type: integer
+ description:
+ The version field is null in the case of an embedded form,
+ while it represents the deployed form's version in other scenarios.
+ format: int64
+ tenantId:
+ type: string
+ description: The tenant ID associated with the form.
+ isDeleted:
+ type: boolean
+ description:
+ Indicates whether the deployed form is deleted or not on Zeebe.
+ This field is false by default, in the case of an embedded form.
+ securitySchemes:
+ cookie:
+ type: apiKey
+ description: Cookie-based authentication is only available on Self-Managed clusters.
+ name: TASKLIST-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/tasklist/version-8.6/tasklist-openapi.yaml b/api/tasklist/version-8.6/tasklist-openapi.yaml
new file mode 100644
index 00000000000..32ee7c05dfd
--- /dev/null
+++ b/api/tasklist/version-8.6/tasklist-openapi.yaml
@@ -0,0 +1,1055 @@
+---
+openapi: 3.0.1
+info:
+ title: Tasklist REST API
+ description:
+ Tasklist is a ready-to-use API application to rapidly implement business
+ processes alongside user tasks in Zeebe.
+ contact:
+ url: https://www.camunda.com
+ license:
+ name: License
+ url: https://docs.camunda.io/docs/reference/licenses/
+ version: v1
+servers:
+ - url: "{schema}://{host}:{port}"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of the API server.
+ port:
+ default: "8080"
+ description: The port of the API server.
+ schema:
+ default: http
+ description: The schema of the API server.
+security:
+ - cookie: []
+ bearer-key: []
+tags:
+ - name: Form
+ description: API to query forms.
+ - name: Task
+ description: API to query and manage tasks.
+ - name: Variables
+ description: API to query variables.
+paths:
+ "/v1/tasks/{taskId}/variables":
+ post:
+ tags:
+ - Task
+ summary: Save draft variables
+ description:
+ "This operation performs several actions:
Validates
+ the task and draft variables.
Deletes existing draft variables for
+ the task.
Checks for new draft variables. If a new variable's `name`
+ matches an existing one but the `value` differs, it is saved. In case of duplicate
+ draft variable names, the last variable's value is kept.
NOTE:
Invoking
+ this method successively will overwrite all existing draft variables. Only
+ draft variables submitted in the most recent request body will be persisted.
+ Therefore, ensure you include all necessary variables in each request to maintain
+ the intended variable set.
The UI does not currently display the values
+ for draft variables that are created via this endpoint.
"
+ operationId: saveDraftTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/SaveVariablesRequest"
+ required: true
+ responses:
+ "204":
+ description: On success returned.
+ content:
+ "*/*": {}
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ `CREATED` state). An error is returned if the task was not claimed
+ (assigned) before, except the case when JWT authentication token used. An
+ error is returned if the task is not assigned to the current user, except
+ the case when JWT authentication token used.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "500":
+ description:
+ An error is returned if an unexpected error occurs while persisting
+ draft task variables.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/variables/search":
+ post:
+ tags:
+ - Task
+ summary: Search task variables
+ description:
+ This method returns a list of task variables for the specified
+ `taskId` and `variableName`. If the request body is not provided or if
+ the `variableNames` parameter in the request is empty, all variables associated
+ with the task will be returned.
+ operationId: searchTaskVariables
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariablesSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/search":
+ post:
+ tags:
+ - Task
+ summary: Search tasks
+ description:
+ Returns the list of tasks that satisfy search request params.
If
+ an empty body is provided, all tasks are returned.
Only one of `[searchAfter,
+ searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must
+ be present in request.
+ operationId: searchTasks
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskSearchRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ type: array
+ items:
+ "$ref": "#/components/schemas/TaskSearchResponse"
+ "400":
+ description:
+ An error is returned when more than one search parameters among
+ `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]`
+ are present in request
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/unassign":
+ patch:
+ tags:
+ - Task
+ summary: Unassign a task
+ description: Unassign a task with `taskId`. Returns the task.
+ operationId: unassignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/complete":
+ patch:
+ tags:
+ - Task
+ summary: Complete a task
+ description:
+ Complete a task with `taskId` and optional `variables`. Returns
+ the task.
+ operationId: completeTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskCompleteRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned if the task was not claimed (assigned)
+ before. An error is returned if the task is not assigned to the current
+ user.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}/assign":
+ patch:
+ tags:
+ - Task
+ summary: Assign a task
+ description:
+ Assign a task with `taskId` to `assignee` or the active user. Returns
+ the task.
+ operationId: assignTask
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ requestBody:
+ description:
+ When using REST API with JWT authentication token following request
+ body parameters may be used.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskAssignRequest"
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "400":
+ description:
+ An error is returned when the task is not active (not in the
+ CREATED state). An error is returned when task was already assigned,
+ except the case when JWT authentication token used and `allowOverrideAssignment
+ = true`.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "403":
+ description:
+ An error is returned when user doesn't have the permission
+ to assign another user to this task.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/variables/{variableId}":
+ get:
+ tags:
+ - Variables
+ summary: Get a variable
+ description: Get the variable details by variable id.
+ operationId: getVariableById
+ parameters:
+ - name: variableId
+ in: path
+ description: The ID of the variable.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/VariableResponse"
+ "404":
+ description:
+ An error is returned when the variable with the `variableId`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/tasks/{taskId}":
+ get:
+ tags:
+ - Task
+ summary: Get a task
+ description: Get one task by id. Returns task or error when task does not exist.
+ operationId: getTaskById
+ parameters:
+ - name: taskId
+ in: path
+ description: The ID of the task.
+ required: true
+ schema:
+ type: string
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/TaskResponse"
+ "403":
+ description: User has no permission to access the task (Self-managed only).
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "404":
+ description:
+ An error is returned when the task with the `taskId` is not
+ found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+ "/v1/forms/{formId}":
+ get:
+ tags:
+ - Form
+ summary: Get a form
+ description:
+ Get the form details by `formId` and `processDefinitionKey` required
+ query param. The `version` query param is optional and is used only for deployed
+ forms (if empty, it retrieves the highest version).
+ operationId: getForm
+ parameters:
+ - name: formId
+ in: path
+ description: The ID of the form.
+ required: true
+ schema:
+ type: string
+ - name: processDefinitionKey
+ in: query
+ description: Reference to the process definition.
+ required: true
+ schema:
+ type: string
+ - name: version
+ in: query
+ description: The version of the form. Valid only for deployed forms.
+ required: false
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "200":
+ description: On success returned.
+ content:
+ application/json:
+ schema:
+ "$ref": "#/components/schemas/FormResponse"
+ "404":
+ description:
+ An error is returned when the form with the `formId` and `processDefinitionKey`
+ is not found.
+ content:
+ application/problem+json:
+ schema:
+ "$ref": "#/components/schemas/Error"
+components:
+ schemas:
+ Error:
+ type: object
+ properties:
+ status:
+ type: integer
+ description:
+ An integer that represents the HTTP status code of the error
+ response. For example, 400 indicates a 'Bad Request' error, 404 indicates
+ a 'Not Found' error, and so on.
+ format: int32
+ message:
+ type: string
+ description:
+ A string that provides a brief description of the error that
+ occurred.
+ instance:
+ type: string
+ description: Error instance UUID for lookup (e.g., in log messages).
+ SaveVariablesRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to the task.
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ VariableInputDTO:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ IncludeVariable:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ alwaysReturnFullValue:
+ type: boolean
+ description: Always return the full value of the variable?
+ default: false
+ VariablesSearchRequest:
+ type: object
+ properties:
+ variableNames:
+ type: array
+ description: Names of variables to find.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description: An array of variable names that should be included in the response.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ description: Request object to search tasks variables by provided variable names.
+ DraftSearchVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ description: The draft value of the variable.
+ VariableSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the variable.
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description: The value of the variable.
+ isValueTruncated:
+ type: boolean
+ description:
+ Does the `previewValue` contain the truncated value or full
+ value?
+ previewValue:
+ type: string
+ description: A preview of the variable's value. Limited in size.
+ draft:
+ "$ref": "#/components/schemas/DraftSearchVariableValue"
+ DateFilter:
+ type: object
+ properties:
+ from:
+ type: string
+ description:
+ Start date range to search from in date-time format outlined
+ in section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ to:
+ type: string
+ description:
+ End date range to search to in date-time format outlined in
+ section 5.6 of the RFC 3339 profile of the ISO 8601 standard.
+ format: date-time
+ description: A range of due dates for the tasks to search for.
+ TaskByVariables:
+ type: object
+ properties:
+ name:
+ type: string
+ description: The name of the variable.
+ value:
+ type: string
+ description:
+ The value of the variable. When specifying the variable value,
+ it's crucial to maintain consistency with JSON values (serialization for
+ the complex objects such as list) and ensure that strings remain appropriately
+ formatted.
+ operator:
+ type: string
+ description:
+ "The comparison operator to use for the variable. * `eq`:
+ Equals"
+ enum:
+ - eq
+ TaskOrderBy:
+ type: object
+ properties:
+ field:
+ type: string
+ enum:
+ - completionTime
+ - creationTime
+ - followUpDate
+ - dueDate
+ - priority
+ order:
+ type: string
+ description: "* `ASC`: Ascending * `DESC`: Descending"
+ enum:
+ - ASC
+ - DESC
+ description: Sort results by a specific field.
+ TaskSearchRequest:
+ type: object
+ properties:
+ state:
+ type: string
+ description: The state of the tasks.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ assigned:
+ type: boolean
+ description: Are the tasks assigned?
+ assignee:
+ type: string
+ description: Who is assigned to the tasks?
+ assignees:
+ type: array
+ description: The assignee is one of the given assignees.
+ items:
+ type: string
+ description: The assignee is one of the given assignees.
+ taskDefinitionId:
+ type: string
+ description: What's the BPMN flow node?
+ candidateGroup:
+ type: string
+ description: Given group is in candidate groups list.
+ candidateGroups:
+ type: array
+ description: At least one of the given groups is in candidate groups list.
+ items:
+ type: string
+ description: At least one of the given groups is in candidate groups list.
+ candidateUser:
+ type: string
+ description: Given user is in candidate user list.
+ candidateUsers:
+ type: array
+ description: At least one of the given users is in candidate user list.
+ items:
+ type: string
+ description: At least one of the given users is in candidate user list.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of TaskQuery.processDefinitionId
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance (renamed equivalent of TaskQuery.processInstanceId
+ field)
+ pageSize:
+ type: integer
+ description: Size of tasks page (default = 50).
+ format: int32
+ followUpDate:
+ "$ref": "#/components/schemas/DateFilter"
+ dueDate:
+ "$ref": "#/components/schemas/DateFilter"
+ taskVariables:
+ type: array
+ description:
+ An array of filter clauses specifying the variables to filter
+ for. If defined, the query returns only tasks to which all clauses
+ apply. However, it's important to note that this filtering mechanism
+ is designed to work exclusively with truncated variables. This means variables
+ of a larger size are not compatible with this filter, and attempts
+ to use them may result in inaccurate or incomplete query results.
+ items:
+ "$ref": "#/components/schemas/TaskByVariables"
+ tenantIds:
+ type: array
+ description:
+ An array of Tenant IDs to filter tasks. When multi-tenancy
+ is enabled, tasks associated with the specified tenant IDs are returned; if
+ disabled, this parameter is ignored.
+ items:
+ type: string
+ sort:
+ type: array
+ description:
+ An array of objects specifying the fields to sort the results
+ by.
+ items:
+ "$ref": "#/components/schemas/TaskOrderBy"
+ searchAfter:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchAfterOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ follow or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ searchBefore:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede the task identified by the provided values, with respect to the
+ sorting order.
+ items:
+ type: string
+ searchBeforeOrEqual:
+ type: array
+ description:
+ Used to return a paginated result. Array of values that should
+ be copied from sortValues of one of the tasks from the current search
+ results page. It enables the API to return a page of tasks that directly
+ precede or are equal to the task identified by the provided values, with
+ respect to the sorting order.
+ items:
+ type: string
+ includeVariables:
+ type: array
+ description:
+ An array used to specify a list of variable names that should
+ be included in the response when querying tasks. This field allows
+ users to selectively retrieve specific variables associated with the tasks
+ returned in the search results.
+ items:
+ "$ref": "#/components/schemas/IncludeVariable"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ priority:
+ description: Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks.
+ type: object
+ properties:
+ eq:
+ type: integer
+ minimum: 0
+ maximum: 100
+ gte:
+ type: integer
+ minimum: 0
+ maximum: 100
+ gt:
+ type: integer
+ minimum: 0
+ maximum: 100
+ lt:
+ type: integer
+ minimum: 0
+ maximum: 100
+ lte:
+ type: integer
+ minimum: 0
+ maximum: 100
+ description: Request object to search tasks by provided params.
+ TaskSearchResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ sortValues:
+ type: array
+ description:
+ Array of values to be copied into `TaskSearchRequest` to request
+ for next or previous page of tasks.
+ items:
+ type: string
+ isFirst:
+ type: boolean
+ description: A flag to show that the task is first in the current filter.
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ variables:
+ type: array
+ description:
+ An array of the task's variables. Only variables specified
+ in `TaskSearchRequest.includeVariables` are returned. Note that a variable's
+ draft value is not returned in `TaskSearchResponse`.
+ items:
+ "$ref": "#/components/schemas/VariableSearchResponse"
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ priority:
+ description: The priority of a user task. The higher the value the higher the priority. Applicable only for Zeebe user tasks.
+ type: integer
+ minimum: 0
+ maximum: 100
+ default: 50
+ TaskResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the task.
+ name:
+ type: string
+ description: The name of the task.
+ taskDefinitionId:
+ type: string
+ description: User task ID from the BPMN definition.
+ processName:
+ type: string
+ description: The name of the process.
+ creationDate:
+ type: string
+ description:
+ When was the task created (renamed equivalent of `Task.creationTime`
+ field).
+ completionDate:
+ type: string
+ description:
+ When was the task completed (renamed equivalent of `Task.completionTime`
+ field).
+ assignee:
+ type: string
+ description: The username/id of who is assigned to the task.
+ taskState:
+ type: string
+ description: The state of the task.
+ readOnly: true
+ enum:
+ - CREATED
+ - COMPLETED
+ - CANCELED
+ - FAILED
+ formKey:
+ type: string
+ description: Reference to the task form.
+ formId:
+ type: string
+ description:
+ Reference to the ID of a deployed form. If the form is not
+ deployed, this property is null.
+ formVersion:
+ type: integer
+ description:
+ Reference to the version of a deployed form. If the form is
+ not deployed, this property is null.
+ format: int64
+ isFormEmbedded:
+ type: boolean
+ description:
+ Is the form embedded for this task? If there is no form, this
+ property is null.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Task.processDefinitionId`
+ field).
+ processInstanceKey:
+ type: string
+ description:
+ Reference to process instance id (renamed equivalent of `Task.processInstanceId`
+ field).
+ tenantId:
+ type: string
+ description: The tenant ID associated with the task.
+ dueDate:
+ type: string
+ description: The due date for the task.
+ format: date-time
+ followUpDate:
+ type: string
+ description: The follow-up date for the task.
+ format: date-time
+ candidateGroups:
+ type: array
+ description: The candidate groups for the task.
+ items:
+ type: string
+ candidateUsers:
+ type: array
+ description: The candidate users for the task.
+ items:
+ type: string
+ implementation:
+ type: string
+ enum:
+ - JOB_WORKER
+ - ZEEBE_USER_TASK
+ priority:
+ description: The priority of a user task. The higher the value the higher the priority. Applicable only for Zeebe user tasks.
+ type: integer
+ minimum: 0
+ maximum: 100
+ default: 50
+ TaskCompleteRequest:
+ type: object
+ properties:
+ variables:
+ type: array
+ description: Variables to update or add to task during the task completion
+ items:
+ "$ref": "#/components/schemas/VariableInputDTO"
+ description:
+ Request object with variables to update or add to task during the
+ task completion.
+ TaskAssignRequest:
+ type: object
+ properties:
+ assignee:
+ type: string
+ description: |-
+ When using a JWT token, the assignee parameter is NOT optional when called directly from the API.
+ The system will not be able to detect the assignee from the JWT token, therefore the assignee parameter needs to be
+ explicitly passed in this instance.
+ allowOverrideAssignment:
+ type: boolean
+ description: |-
+ When `true` the task that is already assigned may be assigned again. Otherwise the task
+ must be first unassigned and only then assigned again.
+ default: true
+ description: Request params used to assign the task to assignee or current user.
+ DraftVariableValue:
+ type: object
+ properties:
+ value:
+ type: string
+ description: The draft value of the variable
+ VariableResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The ID of the variable
+ name:
+ type: string
+ description: The name of the variable
+ value:
+ type: string
+ description: The full value of the variable
+ draft:
+ "$ref": "#/components/schemas/DraftVariableValue"
+ tenantId:
+ type: string
+ description: The tenant ID associated with the variable
+ FormResponse:
+ type: object
+ properties:
+ id:
+ type: string
+ description: The unique identifier of the embedded form within one process.
+ processDefinitionKey:
+ type: string
+ description:
+ Reference to process definition (renamed equivalent of `Form.processDefinitionId`
+ field).
+ title:
+ type: string
+ description: The title of the form.
+ schema:
+ type: string
+ description: The form content.
+ version:
+ type: integer
+ description:
+ The version field is null in the case of an embedded form,
+ while it represents the deployed form's version in other scenarios.
+ format: int64
+ tenantId:
+ type: string
+ description: The tenant ID associated with the form.
+ isDeleted:
+ type: boolean
+ description:
+ Indicates whether the deployed form is deleted or not on Zeebe.
+ This field is false by default, in the case of an embedded form.
+ securitySchemes:
+ cookie:
+ type: apiKey
+ description: Cookie-based authentication is only available on Self-Managed clusters.
+ name: TASKLIST-SESSION
+ in: cookie
+ bearer-key:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/zeebe/generation-strategy.js b/api/zeebe/generation-strategy.js
new file mode 100644
index 00000000000..38b93256112
--- /dev/null
+++ b/api/zeebe/generation-strategy.js
@@ -0,0 +1,45 @@
+const replace = require("replace-in-file");
+const removeDuplicateVersionBadge = require("../remove-duplicate-version-badge");
+
+function preGenerateDocs(config) {
+ hackChangesetDescription(config.specPath);
+}
+
+function postGenerateDocs(config) {
+ removeDuplicateVersionBadge(`${config.outputDir}/zeebe-rest-api.info.mdx`);
+}
+
+module.exports = {
+ preGenerateDocs,
+ postGenerateDocs,
+};
+
+function hackChangesetDescription(specPath) {
+ // This is a temporary hack, until https://github.com/camunda/camunda-docs/issues/3568 is resolved.
+ // The OpenAPI generator plugin we're using does not use the correct `description` property
+ // for the `UserTaskUpdateRequest` object. Instead of picking up the actual property description,
+ // it picks up the description of the first merged schema in the `allOf` property (i.e. from the `Changeset` schema).
+ // This adjustment replaces the description of the `Changeset` schema with the current description of
+ // the `UserTaskUpdateRequest.changeset` property.
+ console.log("hacking changeset description...");
+ replace.sync({
+ files: `${specPath}`,
+ from: /^ description: A map of changes.$/m,
+ to: ` description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * \`candidateGroups\` - reset by providing an empty list
+ * \`candidateUsers\` - reset by providing an empty list
+ * \`dueDate\` - reset by providing an empty String
+ * \`followUpDate\` - reset by providing an empty String
+
+ Providing any of those attributes with a \`null\` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.`,
+ });
+}
diff --git a/api/zeebe/version-8.5/zeebe-openapi.yaml b/api/zeebe/version-8.5/zeebe-openapi.yaml
new file mode 100644
index 00000000000..5b09f10b387
--- /dev/null
+++ b/api/zeebe/version-8.5/zeebe-openapi.yaml
@@ -0,0 +1,428 @@
+openapi: "3.0.3"
+info:
+ title: Zeebe REST API
+ version: "0.1"
+ description: API for communicating with the Zeebe cluster.
+ license:
+ name: Zeebe Community License Version 1.1
+ url: https://github.com/camunda/zeebe/blob/main/licenses/ZEEBE-COMMUNITY-LICENSE-1.1.txt
+externalDocs:
+ description: Find out more
+ url: https://docs.camunda.io/docs/apis-tools/zeebe-api-rest/overview/
+
+servers:
+ - url: "{schema}://{host}:{port}/v1"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of a Zeebe Gateway.
+ port:
+ default: "8080"
+ description: The port of the Zeebe REST API server.
+ schema:
+ default: http
+ description: The schema of the Zeebe REST API server.
+
+paths:
+ /topology:
+ get:
+ tags:
+ - Cluster
+ summary: Get cluster topology
+ description: Obtains the current topology of the cluster the gateway is part of.
+ responses:
+ "200":
+ $ref: "#/components/responses/TopologyResponse"
+ /user-tasks/{userTaskKey}/completion:
+ post:
+ tags:
+ - User task
+ summary: Complete a user task
+ description: Completes a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to complete.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskCompletionRequest"
+
+ responses:
+ "204":
+ description: The user task was completed successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignment:
+ post:
+ tags:
+ - User task
+ summary: Assign a user task
+ description: Assigns a user task with the given key to the given assignee.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to assign.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskAssignmentRequest"
+ responses:
+ "204":
+ description: The user task's assignment was adjusted.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The assignment of the user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}:
+ patch:
+ tags:
+ - User task
+ summary: Update a user task
+ description: Update a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to update.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskUpdateRequest"
+ responses:
+ "204":
+ description: The user task was updated successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be updated.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignee:
+ delete:
+ tags:
+ - User task
+ summary: Unassign a user task
+ description: Removes the assignee of a task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "204":
+ description: The user task was unassigned successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be unassigned.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+components:
+ responses:
+ TopologyResponse:
+ description: Obtains the current topology of the cluster the gateway is part of.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/TopologyResponse"
+ ProblemResponse:
+ description: Response for exceptional uses cases, providing more details.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ schemas:
+ TopologyResponse:
+ description: The response of a topology request.
+ type: object
+ properties:
+ brokers:
+ description: A list of brokers that are part of this cluster.
+ type: array
+ nullable: true
+ items:
+ $ref: "#/components/schemas/BrokerInfo"
+ clusterSize:
+ description: The number of brokers in the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ partitionsCount:
+ description: The number of partitions are spread across the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ replicationFactor:
+ description: The configured replication factor for this cluster.
+ type: integer
+ format: int32
+ nullable: true
+ gatewayVersion:
+ description: The version of the Zeebe Gateway.
+ type: string
+ nullable: true
+ BrokerInfo:
+ description: Provides information on a broker node.
+ type: object
+ properties:
+ nodeId:
+ description: The unique (within a cluster) node ID for the broker.
+ type: integer
+ format: int32
+ host:
+ description: The hostname for reaching the broker.
+ type: string
+ port:
+ description: The port for reaching the broker.
+ type: integer
+ format: int32
+ partitions:
+ description: A list of partitions managed or replicated on this broker.
+ type: array
+ items:
+ $ref: "#/components/schemas/Partition"
+ version:
+ description: The broker version.
+ type: string
+ Partition:
+ description: Provides information on a partition within a broker node.
+ type: object
+ properties:
+ partitionId:
+ description: The unique ID of this partition.
+ type: integer
+ format: int32
+ role:
+ description: Describes the Raft role of the broker for a given partition.
+ type: string
+ enum:
+ - leader
+ - follower
+ - inactive
+ health:
+ description: Describes the current health of the partition.
+ type: string
+ enum:
+ - healthy
+ - unhealthy
+ - dead
+ UserTaskCompletionRequest:
+ type: object
+ properties:
+ variables:
+ additionalProperties: true
+ description: The variables to complete the user task with.
+ type: object
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "complete".
+ type: string
+ nullable: true
+ UserTaskAssignmentRequest:
+ type: object
+ properties:
+ assignee:
+ description: The assignee for the user task. The assignee must not be empty or `null`.
+ type: string
+ nullable: false
+ allowOverride:
+ description: >
+ By default, the task is reassigned if it was already assigned. Set this to `false`
+ to return an error in such cases. The task must then first be unassigned to
+ be assigned again. Use this when you have users picking from group task
+ queues to prevent race conditions.
+ type: boolean
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "assign".
+ type: string
+ nullable: true
+ UserTaskUpdateRequest:
+ type: object
+ properties:
+ changeset:
+ allOf:
+ - $ref: "#/components/schemas/Changeset"
+ description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `candidateGroups` - reset by providing an empty list
+ * `candidateUsers` - reset by providing an empty list
+ * `dueDate` - reset by providing an empty String
+ * `followUpDate` - reset by providing an empty String
+
+ Providing any of those attributes with a `null` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.
+ type: object
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "update".
+ type: string
+ nullable: true
+ Variables:
+ description: A map of variables.
+ type: object
+ additionalProperties: true
+ Changeset:
+ description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `candidateGroups` - reset by providing an empty list
+ * `candidateUsers` - reset by providing an empty list
+ * `dueDate` - reset by providing an empty String
+ * `followUpDate` - reset by providing an empty String
+
+ Providing any of those attributes with a `null` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.
+ type: object
+ additionalProperties: true
+ properties:
+ dueDate:
+ type: string
+ format: date-time
+ description: The due date of the task. Reset by providing an empty String.
+ nullable: true
+ followUpDate:
+ type: string
+ format: date-time
+ description: The follow-up date of the task. Reset by providing an empty String.
+ nullable: true
+ candidateUsers:
+ type: array
+ description: The list of candidate users of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ candidateGroups:
+ type: array
+ description: The list of candidate groups of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ ProblemDetail:
+ description: >
+ A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457).
+ There may be additional properties specific to the problem type.
+ type: object
+ properties:
+ type:
+ type: string
+ format: uri
+ description: A URI identifying the problem type.
+ default: about:blank
+ title:
+ type: string
+ description: A summary of the problem type.
+ status:
+ type: integer
+ format: int32
+ description: The HTTP status code for this problem.
+ minimum: 400
+ maximum: 600
+ detail:
+ type: string
+ description: An explanation of the problem in more detail.
+ instance:
+ type: string
+ format: uri
+ description: A URI identifying the origin of the problem.
+ securitySchemes:
+ bearerAuth:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/api/zeebe/version-8.6/zeebe-openapi.yaml b/api/zeebe/version-8.6/zeebe-openapi.yaml
new file mode 100644
index 00000000000..7bc6a5925e1
--- /dev/null
+++ b/api/zeebe/version-8.6/zeebe-openapi.yaml
@@ -0,0 +1,428 @@
+openapi: "3.0.3"
+info:
+ title: Zeebe REST API
+ version: "0.1"
+ description: API for communicating with the Zeebe cluster.
+ license:
+ name: Zeebe Community License Version 1.1
+ url: https://github.com/camunda/camunda/blob/main/licenses/ZEEBE-COMMUNITY-LICENSE-1.1.txt
+externalDocs:
+ description: Find out more
+ url: https://docs.camunda.io/docs/apis-tools/zeebe-api-rest/overview/
+
+servers:
+ - url: "{schema}://{host}:{port}/v1"
+ variables:
+ host:
+ default: localhost
+ description: The hostname of a Zeebe Gateway.
+ port:
+ default: "8080"
+ description: The port of the Zeebe REST API server.
+ schema:
+ default: http
+ description: The schema of the Zeebe REST API server.
+
+paths:
+ /topology:
+ get:
+ tags:
+ - Cluster
+ summary: Get cluster topology
+ description: Obtains the current topology of the cluster the gateway is part of.
+ responses:
+ "200":
+ $ref: "#/components/responses/TopologyResponse"
+ /user-tasks/{userTaskKey}/completion:
+ post:
+ tags:
+ - User task
+ summary: Complete a user task
+ description: Completes a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to complete.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskCompletionRequest"
+
+ responses:
+ "204":
+ description: The user task was completed successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignment:
+ post:
+ tags:
+ - User task
+ summary: Assign a user task
+ description: Assigns a user task with the given key to the given assignee.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to assign.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: true
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskAssignmentRequest"
+ responses:
+ "204":
+ description: The user task's assignment was adjusted.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The assignment of the user task with the given key cannot be completed.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}:
+ patch:
+ tags:
+ - User task
+ summary: Update a user task
+ description: Update a user task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task to update.
+ schema:
+ type: integer
+ format: int64
+ requestBody:
+ required: false
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/UserTaskUpdateRequest"
+ responses:
+ "204":
+ description: The user task was updated successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be updated.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ /user-tasks/{userTaskKey}/assignee:
+ delete:
+ tags:
+ - User task
+ summary: Unassign a user task
+ description: Removes the assignee of a task with the given key.
+ parameters:
+ - name: userTaskKey
+ in: path
+ required: true
+ description: The key of the user task.
+ schema:
+ type: integer
+ format: int64
+ responses:
+ "204":
+ description: The user task was unassigned successfully.
+ "404":
+ description: The user task with the given key was not found.
+ "409":
+ description: >
+ The user task with the given key is in the wrong state currently.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+ "400":
+ description: >
+ The user task with the given key cannot be unassigned.
+ More details are provided in the response body.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+components:
+ responses:
+ TopologyResponse:
+ description: Obtains the current topology of the cluster the gateway is part of.
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/TopologyResponse"
+ ProblemResponse:
+ description: Response for exceptional uses cases, providing more details.
+ content:
+ application/problem+json:
+ schema:
+ $ref: "#/components/schemas/ProblemDetail"
+
+ schemas:
+ TopologyResponse:
+ description: The response of a topology request.
+ type: object
+ properties:
+ brokers:
+ description: A list of brokers that are part of this cluster.
+ type: array
+ nullable: true
+ items:
+ $ref: "#/components/schemas/BrokerInfo"
+ clusterSize:
+ description: The number of brokers in the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ partitionsCount:
+ description: The number of partitions are spread across the cluster.
+ type: integer
+ format: int32
+ nullable: true
+ replicationFactor:
+ description: The configured replication factor for this cluster.
+ type: integer
+ format: int32
+ nullable: true
+ gatewayVersion:
+ description: The version of the Zeebe Gateway.
+ type: string
+ nullable: true
+ BrokerInfo:
+ description: Provides information on a broker node.
+ type: object
+ properties:
+ nodeId:
+ description: The unique (within a cluster) node ID for the broker.
+ type: integer
+ format: int32
+ host:
+ description: The hostname for reaching the broker.
+ type: string
+ port:
+ description: The port for reaching the broker.
+ type: integer
+ format: int32
+ partitions:
+ description: A list of partitions managed or replicated on this broker.
+ type: array
+ items:
+ $ref: "#/components/schemas/Partition"
+ version:
+ description: The broker version.
+ type: string
+ Partition:
+ description: Provides information on a partition within a broker node.
+ type: object
+ properties:
+ partitionId:
+ description: The unique ID of this partition.
+ type: integer
+ format: int32
+ role:
+ description: Describes the Raft role of the broker for a given partition.
+ type: string
+ enum:
+ - leader
+ - follower
+ - inactive
+ health:
+ description: Describes the current health of the partition.
+ type: string
+ enum:
+ - healthy
+ - unhealthy
+ - dead
+ UserTaskCompletionRequest:
+ type: object
+ properties:
+ variables:
+ additionalProperties: true
+ description: The variables to complete the user task with.
+ type: object
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "complete".
+ type: string
+ nullable: true
+ UserTaskAssignmentRequest:
+ type: object
+ properties:
+ assignee:
+ description: The assignee for the user task. The assignee must not be empty or `null`.
+ type: string
+ nullable: false
+ allowOverride:
+ description: >
+ By default, the task is reassigned if it was already assigned. Set this to `false`
+ to return an error in such cases. The task must then first be unassigned to
+ be assigned again. Use this when you have users picking from group task
+ queues to prevent race conditions.
+ type: boolean
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "assign".
+ type: string
+ nullable: true
+ UserTaskUpdateRequest:
+ type: object
+ properties:
+ changeset:
+ allOf:
+ - $ref: "#/components/schemas/Changeset"
+ description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `candidateGroups` - reset by providing an empty list
+ * `candidateUsers` - reset by providing an empty list
+ * `dueDate` - reset by providing an empty String
+ * `followUpDate` - reset by providing an empty String
+
+ Providing any of those attributes with a `null` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.
+ type: object
+ nullable: true
+ action:
+ description: >
+ A custom action value that will be accessible from user task events resulting
+ from this endpoint invocation. If not provided, it will default to "update".
+ type: string
+ nullable: true
+ Variables:
+ description: A map of variables.
+ type: object
+ additionalProperties: true
+ Changeset:
+ description: |
+ JSON object with changed task attribute values.
+
+ The following attributes can be adjusted with this endpoint, additional attributes
+ will be ignored:
+
+ * `candidateGroups` - reset by providing an empty list
+ * `candidateUsers` - reset by providing an empty list
+ * `dueDate` - reset by providing an empty String
+ * `followUpDate` - reset by providing an empty String
+
+ Providing any of those attributes with a `null` value or omitting it preserves
+ the persisted attribute's value.
+
+ The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
+ This ensures correct event emission for assignee changes.
+ type: object
+ additionalProperties: true
+ properties:
+ dueDate:
+ type: string
+ format: date-time
+ description: The due date of the task. Reset by providing an empty String.
+ nullable: true
+ followUpDate:
+ type: string
+ format: date-time
+ description: The follow-up date of the task. Reset by providing an empty String.
+ nullable: true
+ candidateUsers:
+ type: array
+ description: The list of candidate users of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ candidateGroups:
+ type: array
+ description: The list of candidate groups of the task. Reset by providing an empty list.
+ items:
+ type: string
+ nullable: true
+ ProblemDetail:
+ description: >
+ A Problem detail object as described in [RFC 9457](https://www.rfc-editor.org/rfc/rfc9457).
+ There may be additional properties specific to the problem type.
+ type: object
+ properties:
+ type:
+ type: string
+ format: uri
+ description: A URI identifying the problem type.
+ default: about:blank
+ title:
+ type: string
+ description: A summary of the problem type.
+ status:
+ type: integer
+ format: int32
+ description: The HTTP status code for this problem.
+ minimum: 400
+ maximum: 600
+ detail:
+ type: string
+ description: An explanation of the problem in more detail.
+ instance:
+ type: string
+ format: uri
+ description: A URI identifying the origin of the problem.
+ securitySchemes:
+ bearerAuth:
+ type: http
+ scheme: bearer
+ bearerFormat: JWT
diff --git a/docs/apis-tools/administration-sm-api/sidebar-schema.js b/docs/apis-tools/administration-sm-api/sidebar-schema.js
index 5b070d4aee4..29c55283819 100644
--- a/docs/apis-tools/administration-sm-api/sidebar-schema.js
+++ b/docs/apis-tools/administration-sm-api/sidebar-schema.js
@@ -5,7 +5,7 @@ module.exports = {
"apis-tools/administration-sm-api/administration-sm-api-overview",
"apis-tools/administration-sm-api/administration-sm-api-authentication",
{
- Specifications: require("./specifications/sidebar.js"),
+ Specifications: require("./specifications/sidebar"),
},
],
};
diff --git a/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx b/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx
index 357adbd146d..68db1be250d 100644
--- a/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx
+++ b/docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Administration API (Self-Managed)
+
Access the administration API of Console Self-Managed.
-
- Authentication
-
+
@@ -53,9 +61,7 @@ Access the administration API of Console Self-Managed.
>
diff --git a/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx b/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx
index cca9bf58fdd..16d9033b7eb 100644
--- a/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx
+++ b/docs/apis-tools/administration-sm-api/specifications/get-clusters.api.mdx
@@ -5,48 +5,162 @@ description: "Returns a list of all automation and management clusters. Each clu
sidebar_label: "Get current clusters"
hide_title: true
hide_table_of_contents: true
-api: eJzFV9uO2zYQ/RViXtoCXNu9AYFQFHAXSbBFtgmyXgSo4QeaGluMKVJLUus4hv69GFKW5cvuGujtyRI1PJw5M3M43oKt0ImgrLnJIYMlhmtd+4DOAweHvrLGo4dsCz+MRvSTo5dOVbQDMni/Ag7SmoAm0FdRVVrJiDf87MlkC14WWAp6UgHLiFU5OjaohFzXKqffsKkQMvDBKbMEfnTUvVEPNTKVowlqodAxu2ChQCaTw9BwMKLEl5H+ECU+sdlXQl6IEE37GEx55mpjlFkyZQYE6YMItT+l7cbkxBJ6phZM9AEKFDoUG2YdMzYAP3EETV1CNoXWEDjUpv+8MnZtYMYhqKBp57U13mq8ux3npTLjSg3uklcNhyWaNvsvxzwplCcPY8S1c2gCe0TnlTU7MnfR90hNmMfxf8JvHLJc+aDMsla+oF1zDGtEw0QdbBmdYsLkrBRGLLGk41pcP2C3p4tMGanrHFmvBslbEZiQgS21nQutN0wRLFPGB6E15ixW75fAmVYrZC1bxP+tzVGjG7Dx3qHuMOFS7v9EnOOxDxTNgRcR+n3sNORsIvxKKx9ieO+roEr1FQfP5HrPCHDY8/F8lts+nhBmw6kz/TM9+ESeInv7SA5LvF/8LX2RDn4aKmeDwXMRfqV9V3NnV+iAt69LEXAtqKyTSCEBtIBxMTFHnKRUJS0iHoBDEopwcVeMq2rH1d+Sox5dl0uAOWb5v9WB2ulLBABZVc+1kuz+47snwv2XFOXoFIciVwa9v8zrzvwZx0sMTskLAVvjJ+Giiw+1cphTjiJgLKuuHhLnB3zNuiTb+WeUlHSR54q+Cf2h160LoT2+UMp77QXhXGyi0zCiCNnFoVad7++TmOKl3d64/buzF2EvNr7jIMrQPxfp9fFN00bbNOTvT6MfTxvvjXVzlecYs/7zuaHmDt0juiuvcmTonE3BH9p8xFA745nYk6j1RVfXayGL7sZHE9wmXkFCGX9c8j6ihAKVY4nVqKFi6SkD3aA24+BR1o7ELptuYY7CoYNsOmtmHCrhRInRMJvOYqEXtp31gD6HAjIYCqL0SlRqKPcDoI9M+IgaNQK2aZprsuFwW1gfmmxbWRca4PAonBJzne4T+paYXYhaB8hAWyl0XD5XivTB9Oay8Ycblk6PgxSdcQj3avRqdF6irAtPoOwn0T1OEUJ1FicZn0Vqmh7ld2SXgt4R30lICx6h6L014O3DG+tKQU78/mkSa0yZhY3b24KPda58SF0Unfj2DvXiKs0/+Xcnno+lJJ2LinS62S66AacPQ1XVCi9k8P1gNBi1Y72QkfaUe4rGZ8Pher0eSFHWJhcDaUtiViuJxscJIs3g8K5d4Uebcyt9t1vZ+D50uECHRuKwBfLDyEdlfSiF6cG+xdDdFb1CPSBhu/9H8r/2aaoBGi6HlRbK9G7a1HVT6LqO+O71c2qfKWy3c+Hx3ummoeWHGt0mtfGu22KbcxoD8tjzW1jhpi2EKsS21HUUxuO/Zk1fDN6+npAK1+RWV75H5RrRdzJrNj3sX36LBmxiV2h+Bd76EOgVmlnTNH8B6kAKmA==
+api: eJzFV9tu2zgQ/RViXnYXYGzvDSj0ZgRtkUWzKRoHBdbwA02NLdYUqZBUs66gf18MKcvyJYmBvT1ZooaHM2dmDscN2AqdCMqamxwyWGO41rUP6DxwcOgrazx6yBr4aTKhnxy9dKqiHZDB3QY4SGsCmkBfRVVpJSPe+Isnkwa8LLAU9KQClhGrcnRsUAm5rlVOv2FbIWTgg1NmDfzoqAejHmtkKkcT1EqhY3bFQoFMJoeh5WBEia8j/S5KfGazr4S8ECGaDjGY8szVxiizZsqMCNIHEWp/StuNyYkl9EytmBgCFCh0KLbMOmZsAH7iCJq6hGwOnSFwqM3weWPsk4EFh6CCpp3X1nir8f52mpfKTCs1uk9etRzWaLrsvx7zrFCePIwR186hCewrOq+s2ZG5i35AasI8jv8zfueQ5coHZda18gXtWmJ4QjRM1MGW0SkmTM5KYcQaSzquw/Ujdnu6yJSRus6RDWqQvBWBCRnYWtul0HrLFMEyZXwQWmPOYvX+GTjTaoOsY4v4v7U5anQjNt071B8mXMr9H4hLPPaBojnwIkLfxU5DzmbCb7TyIYZ3VwVVqm84eiHXe0aAw56Pl7Pc9fGMMFtOnelf6MFn8hTZ20dyWOLD4u/oi3Tw01A5G41eivAb7btaOrtBB7x7XYuAT4LKOokUEkAHGBcTc8RJSlXSIuIBOCShCBd3xbSqdlz9LTka0HW5BJhjlv9bHaidvkQAkFX1UivJHj59eCbcf0lRjk5xKHJl0PvLvO7NX3C8xOCUvBCwM34WLrr4WCuHOeUoAsay6ushcX7A16JPsl1+QUlJF3mu6JvQHwfduhLa4yulvNdeEM7FJjoNI4qQXR1q1fn+PokpXtrdjTu8OwcRDmLjOw6iDP1zkV4f3zRdtG1L/v4y+fm08d5Zt1R5jjHrv54bau7RfUV35VWODJ2zKfhDm08Yamc8E3sStb7o6norZNHf+GiC28YrSCjjj0veR5RQoHIssRo1VKw9ZaAf1BYcPMrakdhl8waWKBw6yOaLdsGhEk6UGA2z+SIWemG7WQ/ocyggg7EgSq9EpcZyPwD6yISPqFEjoEnTXJuNx01hfWizprIutMDhq3BKLHW6T+hbYnYlah0gA22l0HH5XCnSBzOYy6Yfb1g6PQ5SdMYh3JvJm8l5ibIuPIOyn0T3OEUI1VmcZHwWqW0HlN+TXQp6R3wvIR14hKL3zoB3D++sKwU58dvnWawxZVY2bu8KPta58iF1UXTi+3vUq6s0/+Q/nHg+lZJ0LirS6Wa76gecIQxVVSe8kMGPo8lo0o31QkbaU+4pGp+Nx09PTyMpytrkYiRtScxqJdH4OEGkGRw+dCv8aHNupe93Kxvfxw5X6NBIHHdAfhz5qKwPpTAD2PcY+rtiUKgHJDT7fyT/a5+mGqDhclxpoczgpk1dN4e+64jvQT+n9plD0yyFxwen25aWH2t029TGu26Lbc5pDMhjzzewwW1XCFWIbanrKIzHf83aoRi8fzsjFa7Jrb58j8o1ou9k1mwH2E2TLGZ2g6YlMUhOBHqHdtG27V8VCQwO
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get current clusters
+
-
+
Returns a list of all automation and management clusters. Each cluster entry contains the running apps and their status.
-## Request
+
-
+
-Ok
+
-
Schema
Array [
apps object[]required
-
-The list of applications running in the cluster
-
-
Array [
]
]
-
-Forbidden
-
-
-
-Server-side error
-
-
+
diff --git a/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx b/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx
index 6b108eaf1ed..6b79ef3be7d 100644
--- a/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx
+++ b/docs/apis-tools/administration-sm-api/specifications/get-usage-metrics.api.mdx
@@ -5,59 +5,152 @@ description: "Returns usage metrics for a specific cluster for a given time rang
sidebar_label: "Get usage metrics for clusters"
hide_title: true
hide_table_of_contents: true
-api: eJzlV99v2zYQ/leIe2oBxvZ+AYUwDMiKpciwbEWTYAMMP5zJs81GIhWSShsI+t+HoyRbsWWvGxLsoS+JJR8/fvzu7ju6BleSx2icvdSQwZribcA1XVH0RgWQ4CmUzgYKkNXw7WzG/zQF5U3JqyCDP+5AgnI2ko38LZZlblTCnH4MHFJDUBsqkD+VnneMpgU0mv/Gx5IggxC9sWuQe/g3GxJGk41mZcgLtxJxQ0LlVYjkJ9BIxlQUwqUNEa1qkQ8xKj6YKNqTiZXzIkT0kbTo1gvTA0xA7hGNLmI+4GqrYkkeJKycLzBCBtpVy5xG2bfBzPyQA4pQkjIrowRDT6BpWPT7ynjSkM27nRey39ktP5KKIAG1NrwJ5u8HVFeYB5IQTcw5+q2zweV0fXWuC2PPSzMZ5nenWMO8lQlcCP9WRvpMqmIde4SvXMiI4e42kP9iATEEs7akBa8UFS/9X4WT0DHqmjRSEQ77tNkqid7j4+i+6SwibjCmswWxwQcSSyI7OLQ7lqshj5fJ2802VfsMjIYRYxnrkmHCX4blhfNvW7uDpmGi38++O6ytC+eXRmuynJkfxpz6mvwD+bNgNAny3vl06qcxHyhW3obTddKZb/d6bR7IimgKEh7tmibisMzRk8D12tMa2SncA/lk47tVAq0Wxqq80sN6PerR8pTvyIR2pK8irgOnOEks+lG3kBBIVd7ER8jmNSwJPXnI5otmIaFEjwXF1NTz0a625r46MahAguHY+4o894rFghOfymxXd9FXJAfTcq/jGjm2dZIoKRkiFmW/8VDaIG5/v/xrEGOsKEyem0DKWR2OsEvIJwkems9TezpCmax+EcJkT+v5z3QXEgqKG9fdhtgEMG4ggylya55haaaptM+K7R0ppL5qK6PyOWRQt1s22XRab1yITVaXzscGJDygN7jMW2vl79o+XWGVM7HcKczT6zE/5S/4qL1k5+8vRbt7exFyfg/uzezNbBSJQ4+g7OTa4WxiLEdx2uBRpCRm31PXHNceuu+sbXl34AmKn7sA2X246JP26583ybGMXbm0vHPPZJomxPYim0i8uqZ8dXaFFtekXx8wP1fJTJgyHi52K9EZshjCsHdwnluIbyazyay7+aJKsre559OEbDr99OnTRGFRWY0T5QpWNjeKbCCO7Qr2t+6N3FusnQrb1cal56mnFXmyiqYdUJgmPUoXYoF2APuO4oiDd1YU9uWod9f3r8L/26qL9DlOyxxNGphJ/rpr9jlsm50z86TdF7Lr2jnU9RID3fq8afh160VpPJjALa63c/6o3K8+dF71WnzhFBllf0eP/TB5wLziAEjO+1+JPM9MOcG1Hy3PQ/c55skJsu1Y2VFd7Gw8XRAkbAh1ui3U3RJ2mHJ4wIOfxU9GzbtfbviuWHH1bX1xzwcTen/lto8D7B9/TgHixt2R/Ql62pEfoVk0TfM3+WOSPA==
+api: eJzlV01v2zgQ/SvEnFqAsb1fQKFbUGyKLDa7RZNgFzB8GJNjm41EKiSVNBD034uhJFuxZW93kWAPvSSWPHx8fDPzhq7BleQxGmcvNWSwpngbcE1XFL1RASR4CqWzgQJkNfw4m/E/TUF5U/IqyODPO5CgnI1kI3+LZZkblTCnnwOH1BDUhgrkT6XnHaNpAY3mv/GpJMggRG/sGuQe/s2GhNFko1kZ8sKtRNyQUHkVIvkJNJIxFYVwaUNEq1rkQ4yKDyaK9mRi5bwIEX0kLbr1wvQAE5B7RKOLmA+42qpYkgcJK+cLjJCBdtUyp1H2bTAzP+SAIpSkzMoowdATaBoW/b4ynjRk827nhex3dsvPpCJIQK0Nb4L5xwHVFeaBJEQTc45+72xwOV1fnevC2PPSTIb53SnWMG9lAhfCv5WRvpCqWMce4TsXMmK4uw3kv1lADMGsLWnBK0XFS/9X4SR0jLomjVSEwz5ttkqi9/g0um86i4gbjOlsQWzwgcSSyA4O7Y7lasjjdfJ2s03VPgOjYcRYxrpkmPDXYXnh/PvW7qBpmOjPs58Oa+vC+aXRmixn5pcxp74m/0D+LBhNgrx3Pp36ecwnipW34XSddObbvV6bB7IimoKER7umiTgsc/QkcL32tEZ2CvdAPtn4bpVAq4WxKq/0sF6PerQ85TsyoR3pq4jrwClOEot+1C0kBFKVN/EJsnkNS0JPHrL5ollIKNFjQTE19Xy0q625r04MKpBgOPa+Is+9YrHgxKcy29Vd9BXJwbTc67hGjm2dJEpKhohF2W88lDaI2z8u/x7EGCsKk+cmkHJWhyPsEvJJgofm89yejlAmq1+FMNnTev4z3YWEguLGdbchNgGMG8hgityaZ1iaaSrts2J7Rwqpr9rKqHwOGdTtlk02ndYbF2KT1aXzsQEJD+gNLvPWWvm7tk9XWOVMLHcK8/R6zE/5Cz5qL9n5x0vR7t5ehJzfg3s3ezcbReLQIyg7uXY4mxjLUZw2eBQpidn31DXHtYfuO2tb3h14guLnLkB2Hy76pP32101yLGNXLi3v3DOZpgmxvcgmEm+uKV+dXaHFNem3B8zPVTITpoyHi91KdIYshjDsHZznFuKHyWwy626+qJLsbe75NCGbTh8fHycKi8pqnChXsLK5UWQDcWxXsL93b+TeYu1U2K42Lj1PPa3Ik1U07YDCNOlRuhALtAPYDxRHHLyzorAvR727vn8X/t9WXaQvcVrmaNLATPLXXbPPYdvsnJln7b6QXdfOoa6XGOjW503Dr1svSuPBBG5xvZ3zR+V+86nzqrfiG6fIKPs7euqHyQPmFQdAct7/SuRlZsoJrv1oeRm6LzFPTpBtx8qO6mJn4+mCIGFDqNNtoe6WsMOUwwMe/Cx+Nmo+/HrDd8WKq2/ri3s+mND7K7d9GmDXdRtx4+7INjxlWhKRn6FZNE3zFavQk7I=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/administration-sm-api/specifications/administration-api-self-managed
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get usage metrics for clusters
+
Returns usage metrics for a specific cluster for a given time range. The usage metrics are aggregated over the time range and include number of started process instances, executed decision instances, and assigned task users.
-## Request
-
-
Query Parameters
-
-Ok
-
-
Schema
processInstances objectrequired
-
-The usage metrics for started process instances.
-
-
decisionInstances objectrequired
-
-The usage metrics for executed decision instances.
-
-
+
-
+
Iterate through all known partitions and activate jobs up to the requested maximum.
-## Request
+
-
Body
required
).\n","type":"string"}}>
+
-The list of activated jobs.
+).\n',
+ type: "string",
+ },
+ worker: {
+ description:
+ "The name of the worker activating the jobs, mostly used for logging purposes.",
+ type: "string",
+ nullable: true,
+ },
+ timeout: {
+ description:
+ "A job returned after this call will not be activated by another call until the timeout (in ms) has been reached.\n",
+ type: "integer",
+ format: "int64",
+ },
+ maxJobsToActivate: {
+ description: "The maximum jobs to activate by this request.",
+ type: "integer",
+ format: "int32",
+ },
+ fetchVariable: {
+ description:
+ "A list of variables to fetch as the job variables; if empty, all visible variables at the time of activation for the scope of the job will be returned.\n",
+ type: "array",
+ nullable: true,
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "The request will be completed when at least one job is activated or after the requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used. If the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.\n",
+ type: "integer",
+ format: "int64",
+ default: 0,
+ nullable: true,
+ },
+ tenantIds: {
+ description:
+ "A list of IDs of tenants for which to activate jobs.",
+ type: "array",
+ items: { type: "string" },
+ nullable: true,
+ },
+ },
+ required: ["type", "timeout", "maxJobsToActivate"],
+ title: "JobActivationRequest",
+ },
+ },
+ },
+ }}
+>
-
Schema
jobs object[]
-
-The activated jobs.
-
-
Array [
]
Schema
jobs object[]
-
-The activated jobs.
-
-
Array [
]
Schema
jobs object[]
-
-The activated jobs.
-
-
Array [
]
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx
index 440c05d841c..fd6a4ec0f9b 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx
@@ -12,53 +12,267 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a user to a group
+
Assigns a user to a group.
-## Request
+
-
Path Parameters
+
-The user was assigned successfully to the group.
+
-
-
-The user could not be assigned.
-More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The group or user with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user with the given key is already assigned to the group.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx
index cf17b4bd9a9..2e6feceecc9 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx
@@ -12,48 +12,226 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a group to a tenant
+
Assign a single group to a specified tenant.
-## Request
-
-
Path Parameters
-
-The group was successfully assigned to the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or group was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx
index 2e1c03bfb43..c46a83adafb 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx
@@ -12,48 +12,226 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a mapping rule to a tenant
+
Assign a single mapping rule to a specified tenant.
-## Request
-
-
Path Parameters
-
-The mapping rule was successfully assigned to the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or mapping rule was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
index b2d6aec967b..46d4a401224 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
@@ -5,55 +5,259 @@ description: "Assigns a user task with the given key to the given assignee."
sidebar_label: "Assign user task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign user task
+
Assigns a user task with the given key to the given assignee.
-## Request
+
-
Path Parameters
Body
required
+
-The user task's assignment was adjusted.
+
-
-
-The assignment of the user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx
index 513bd99b673..fa47a89cb1d 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx
@@ -12,48 +12,224 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a user to a tenant
+
Assign a single user to a specified tenant.
-## Request
-
-
Path Parameters
-
-The user was successfully assigned to the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or user was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
index 62fc0cd28b6..1d2775b699c 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
@@ -5,52 +5,286 @@ description: "Broadcasts a signal."
sidebar_label: "Broadcast signal"
hide_title: true
hide_table_of_contents: true
-api: eJztWFFv2zYQ/ivEPW2YIrld2nV6c9N0S9emQeJuD6kfTtLZYiuRKknFMQz99+FE2ZYtJwuGFdiDAxixrNPdfffdR4q3AodzC/Et3Mi5wgKmAeiKDDqp1UUGMSRGY5aidZ1BABnZ1MiKLSCG1+v7VqCwrU0IARj6VpN1r3W2hHjVXkpDGcTO1BRAqpUj5fgWVlUh0zZg9MWyzxXYNKcS+ZtbVgQx6OQLpQ4CqAyn5yTZ1q6Nd4kl8dVuYpOchMKShJ4Jl1OXm3BabCBxol0A64xUc2gCuEMjMSl8AMwyyf6wuOoF9hiG4boQGw8CuSjvbj5eCg+gF7BD1ATgSKFyXOxDEC7erAF4O+FydEIvlO2hOgCkCXpFv+1XahqAk65gY8/phsJrTxo0jX/cVlpZX4jno9Hh/DrMC7S7df3XDGNRfJxBfLsf7DVaElv6xUwbMcjfZzws837jPF7zrtLb0q97h0s/QDos/IPl9ekxEmimh5v5D1oeTqpW8ltN3yOpunCtRZ+nO5WFKZa1yjDESoZfaWlDVZcJmZ+GHGZUGUrRbQV+ZPU7siqVozkZCGCmTYnO//Ty9ClpPo1pD/sA00de/x9qZZvTh9bkyug7mVEmMnQopBVKO3GHhcweWZkro5OCyoPq7gcYiytvKTJyKItua+O9zhsmlAmpxO312zPx6+mLX6Y/5M5VNo6ixWIRmll6Qpl02oTazCMzS/nDdj+GYpKTIVHiUiQktntvv5FsRamcyZQ3cuextslwCcPP6p97qb272it5T0m1kYOXnLH4dH0hZEbKydlSqvkwdPvMDJmdGDDRtYuTAtVX2JI5DLofxdZliWa57pndAE0A1qGrezAeWAl+fj7wzW3x+2RyJbwLkeqMWlG6XNp1IAZRSiXLuoT4dDQKoMR7f/VyNGrYJzP+BCRK0H1VoGpbax+OVKLUhrr+aYFJZR2q9L9iRhs5l/txwx1hdU38xiNaC+r00ZecTkkzXaujko5KOirpQSW9OLQ1jZXgKhvuQzJGG6HTtDaGMrHIZdG6T8nadezuDOl78ai1o9aOWhtqrQmgJJdrntVU2ratgy6HGCK/a9lo86oJAVgyd2Rs+8ZemwJiWHnJNHEUrXJtXROvKm1cE90xHzvTEL7tpbVumUKnWOQ+7JA6vtEfwZz5Y4Z4Ja7PbybiN3S0wGVbSg656/rV6NXooFc2fcDj+OpCeIS+8XqLwdotq/qgW2/8FMcNnwYspbWRbnnDj/nyJISGzLjm6m8aoovXeudrbwRB9+Xtuk3e/TVpmeaF7Ho7PDu/x7LyMuwPu7Z91idoZ5jUG2lJNdNtSl0XDcGxIzLWV2MUPht27NVFK7xUl2Wt2tVXzcVCulxgr1hpUVvHRQqgkCnxeTNegfI5r83e+zviTx9RPAuZaN+N60V3Ll1eJ2Gqy6g7nG7+J4VOohKliroQNjobf/h0+WZ88v7i7Pzy5vzkWTgK3b2farAoSlS9PDanqe69bh/sarvZPDTe7Mh1dO+iqkCpuMwtglUnv/XIzTLVGwFOg05Et7BaJWjpkymahn/+VpNZQnw73VLKV00AOWFGplXsVz5uwpnP7mTCSbB5UXMygzFbE6yfGKcpVe5R22lvHbn6eDPhtLvhbakzfsbggge7uIAYPsNnAB4Vs4e2+dvfV1Cgmtc4Z3vvl//+BshkxRc=
+api: eJztWFFv2zYQ/isEnzZMkdwu7Tq9uWm6peuSIHG3h8wPJ+lssZVIlaTiGIL++3CkZMuWkwXDCuzBAYxY1unuvvvuI8VruIWl4fEdvxVLCQWfB1xVqMEKJS8yHvNEK8hSMLYzCHiGJtWiIgse87f9fcOAGWcT8oBr/FqjsW9VtuZx4y6FxozHVtcY8FRJi9LSLaiqQqQuYPTZkM+GmzTHEuibXVfIY66Sz5haHvBKU3pWoHF2Lt4llEhXu4nNcmQSSmRqwWyOXW7MKraBRIl2AYzVQi55G/B70AKSwgeALBPkD4rrQWCPYRyuC7HxwICK8uH26pJ5AIOAHaI24BYlSEvFPgTh4l0PwNsxm4NlaiXNANUBIG0wKPrdsFLzgFthCzL2nG4ovPGk8bb1j5tKSeML8XIyOZxfh3kFZreu/5phKIqrBY/v9oO9BYNsSz9bKM1G+fuMx2Xeb5yna95Velv6vneo9COk48I/Wl6fHiHh7fxwM/+G68NJ1VJ8rfFbJFUX1lkMebqXWZhCWcsMQqhE+AXXJpR1maD+YcxhhpXGFOxW4EdWvyGrQlpcouYBXyhdgvU/vT59TprPY9rDPsD0kdf/h1rJ5vSxNbnS6l5kmLEMLDBhmFSW3UMhsidW5kqrpMDyoLqHAabs2luyDC2IotvaaK/zhglmTEh2d/P+jP18+uqn+Xe5tZWJo2i1WoV6kZ5gJqzSodLLSC9S+pDd9yGb5aiRlbBmCbLt3jtsJFNhKhYipY3ceqwuGSph+Jf8515yd5u9kg+UVGsxesmZsk83F0xkKK1YrIVcjkO7ZxZA7MQcElXbOClAfuFbMsdB96OYuixBr/ue2Q3QBtxYsPUAxiMrwY8vR76pLX6dza6Zd8FSlaETpc2F6QMRiFJIUdYlj08nk4CX8OCvXk8mLfkkxp+BRDJ8qAqQrrX24QjJSqWx6x8HTEhjQab/FTNKi6XYjxvuCKtr4nceUS+o0ydfcjolLVQtj0o6KumopEeV9OrQ1jSVjKqsqQ9Ra6WZStNaa8zYKheFc5+iMX3s7gzpe/GotaPWjloba60NeIk2VzSrqZRxrQM25zGP/K5los2rJg+4QX2P2rg39loXPOaNl0wbR1GTK2PbuKmUtm10T3zsTEPotpdW3zKFSqHIfdgxdXRjOII588cM9obdnN/O2C9gcQVrV0oKuev6zeTN5KBXMn3E4/T6gnmEvvEGi0HvllR90K03fo7jlk4DBtNaC7u+pcd8eRIEjXpaU/U3DdHFc97p2hvxoPvyvm+TD3/OHNO0kN1sh2fnD1BWXobDYde2z4YE7QyTBiMtIRfKpdR10RgcOUJtfDUm4Ytxx15fOOGlqixr6VZfuWQrYXMGg2KlRW0sFSnghUiRzptxw6XPuTf76O+wP3xE9iIkon039ovuUti8TsJUlVF3ON38TwqVRCUIGXUhTHQ2/f3T5bvpyceLs/PL2/OTF+EktA9+qkGiKEEO8ticprr3un2wzXazeWy82ZFr8cFGVQFCUpkdgqaTXz9yM0T1RoDzoBPRHW+aBAx+0kXb0s9fa9RrHt/Nt5TSVRvwHCFD7RT7hY6b/MxndzKjJMi8qCmZ0ZitDfonpmmKlX3Sdj5YR66vbmeUdje8LVVGz2hY0WAXVjzmnMbE9LRrfPdbwwuQyxqWZOt90t/fxt/EGw==
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Broadcast signal
+
-
+
Broadcasts a signal.
-## Request
+
-
Body
required
variables object
+
-The signal variables as a JSON object.
+
-
-
-The signal was broadcast.
-
-
Schema
Schema
Schema
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The signal is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx b/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
index c8c484fd2ab..eb8e1dac584 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Camunda 8 REST API
+
API for communicating with a Camunda 8 cluster.
-
- Authentication
-
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
index 8cfda3cbebb..4b2020d0acf 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
@@ -5,51 +5,206 @@ description: "Cancels a running process instance. As a cancelation includes more
sidebar_label: "Cancel process instance"
hide_title: true
hide_table_of_contents: true
-api: eJztWN9v2zYQ/leIe2oxRXK6tMv0MMBL0y1b2wWOuz0keaClk8WWIlWSimMI+t+HIyXbsWygBfYyIAGMWOLxfn7fmccWHF9aSG/h2ugMrWVCWcdVhnAfga7RcCe0usohhYxey17uahCLIEebGVGTHKRw4aUs48w0Sgm1ZPWe5phNaTmo8+qZUJlscrSs0gaZK7linxvrmCuRGaz0A5dMF/5xXxszaHVjMoz88q7WYYVVpGuBrNbWYR5DBDU3vEKHhmJvQfEKIYX6aWx/4hoiEBRVzV0JERj82giDOaTONLgf+rxE9gXXRz11unePPLBZiRWHtAW3rsm4dUaoJXTdfbCD1v2q8zVJbM0WXFqMINPKoXK0xutaiswHnHy25Ec71q0XnzFzEIFqpOQLiUMAtaEaO4GWpDf1nmGBBqm8absX5JSZYdEHm5XaomKLtY+5sWiofo6thJQ+59w4ygiXkhnMtMktFaaRjrBRGF0xVwrLNrbjO/Whr9cvbMJEQYl8EDnm8Z2CaAhJKIdLNBBBoU3FXXj15gwiqIQSVVNBetp1ETjhKN4emHvwnYVEQ9eRqEFba2VDMl5NzsbRzw/VVdi+roStLoKzyeToTh8Iy7njtE1pxx64FB6TR4paG72QWP0wLu5+Ya6DJMvRcSFZKDrjlgXBBeZMKHY7e3fBfj57/dP9i9K52qZJslqtYlNkJ5gLp02szTIxRUYfknsZs3mJBlnF11QVnueCbHLJtvBhtsZMFCIjlPfo985QuZ4UboPFp9gLq/ts2KluY8So2UzZp9kVEzkqJ4o1AWpk2u8peCNJB1/oxqULydUX2EJjbHTfim2qiptdZu8Y6CKwjrtmJ4wj6Pzx1Ug3weL3+fyaBRUs0zmyQptAit5QvAvqs8kkgoo/hqc3k0lHOqni3xCJYvhYS65Cg9wLR6jQf4M2H9jm1+C/qYw2Yin27cawS9MexG9DRIGXZ99DReJUoRv1zKlnTj1z6iinXh/6kZrSUcyhIRyiMdownWWNMZizVSnkhnCD7f6cErD4zLVnrj1zbcy1LoIKXalphqIJxI8froQUkp5OJ4ObNmnHM0iXhNNlmGpodEDzMEwujZGQQhtI1aVJ0pbaui5ta21clzxQxR64EXTo9wWm5UC+AVRSZ1yWwbFxcWmBxqMh6AteNSrn7JzNLm/m7DfucMXXPtlk8qnq88n55KBWEj2icXp9xUKEAZo77WJQS7w/qDYIf4tiP2ZZzBoj3PqGtoX0LJAbNNOG6rOBTG/Pa6fnIARR/+XdAKQ//pl7LFCrm21HuMtHXtWBqIcmrInHaaG9wc2wsu861RGNDbFO4tMxYq+vPPEyXVWN8t1XLdlKuJLxnVRksrGOUhCBFBkq6/3qB+BB7H1YYX8Hi+w0pjIGrA1Ndylc2SziTFdJFrZt/i+kXiQVFyrpTdjkYvrh08e305P3VxeXH28uT07jSewenU8XkaLi6okfBPjR8W4/5nb7m/M/uXfoAeXw0SW15EIRxH1e274p3MKoKUAE6cGriSd94T7quX0LbbvgFj8Z2XX0+muDZg3p7f22FfjekQtL37fXCkeT+2LW30C8ZN91yXEw3P4lV2vfm2RDTxDBF1wfvoPp7rsISuQ5Gu93ELwI3p3MSd1W0eg+pIuGHdMsw9odkX1yTKHmsOnZ13/dzInr/WVMpXPaa/iKLoT4ClK4gzsKQPvM+Tbi37cguVo2fEnyQS/9/Qtc4sFj
+api: eJztWFtv2zYU/isEn1pMkZwu7To9DPDSdMvWdoHjbg9pHmjqyGJLkSovcQxB/304pOSbbKAF9jIgAYxY4uG5ft8xD1vq2NLS/I7eGM3BWiKUdUxxoPcJ1Q0Y5oRW1wXNKcfXspe7HsQSWoDlRjQoR3N6GaQsYcR4pYRakuZAc0qmuBzVBfVEKC59AZbU2gBxFVPks7eOuAqIgVo/MEl0GR4PtREDVnvDIQnLu1qHFVKjrgWQRlsHRUoT2jDDanBgMPaWKlYDzWmzH9ufsKYJFRhVw1xFE2rgqxcGCpo74+Ew9HkF5AusT3rqdO8eemB5BTWjeUvdukHj1hmhlrTr7qMdsO5XXaxRYmu2ZNJCQrlWDpTDNdY0UvAQcPbZoh/tWLdefAbuaEKVl5ItJAwBNAZr7ARYlN7UewYlGMDy5u1BkFNihsUQLK+0BUUW6xCzt2Cwfo6shJQh58w4zAiTkhjg2hQWC+OlQ2yURtfEVcKSje30k3rf1+sXMiGixEQ+iAKK9JOiyRCSUA6WYGhCS21q5uKrVxc0obVQovY1zc+7LqFOOIy3B+YBfGcx0bTrUNSAbbSyMRkvJhfj6OfH6ipsX1fEVpfQi8nk5M4QCCmYY7hNaUcemBQBkyeK2hi9kFD/MC7uYWFuoiQpwDEhSSw6YZZEwQUURChyN3t7SX6+ePnT/bPKucbmWbZarVJT8jMohNMm1WaZmZLjB+Wep2RegQFSszVWhRWFQJtMki18iG2Ai1JwRHmP/uAMlmuvcBss7mMvrh6yYae63ohRs5mSj7NrIgpQTpRrBNTIdNhTMi9RB1to7/KFZOoL3UJjbPTQivV1zcwus3cMdAm1jjm/E8YJdP74YqQbYfH7fH5DogrCdQGk1CaSojeU7oL6YjJJaM0e49OryaRDnVjxb4hEEXhsJFOxQR6EI1Tsv1FbCGzza/DfVEYbsRSHdlO6S9MexG9iRJGXF99DReRUqb164tQTp544dZJTL4/9SE3xKObAIA7BGG2I5twbAwVZVUJuCDfY7s8pEYtPXHvi2hPXxlzrElqDqzTOUDiBhPHDVTSnWU+ns8FNm7XjGaTL4ukyTjU4OoB5GCYXbyTNaRtJ1eVZ1lbaui5vG21clz1gxR6YEXjoDwXG5Ui+AVRScyar6Ni4uLiA49EQ9CWrvSoYeU1mV7dz8htzsGLrkGw0ua/69eT15KhWFD2hcXpzTWKEEZo77WJQi7w/qjYKf4viMGZZ4N4It77FbTE9C2AGzNRjfTaQ6e0F7fgchWjSf3k7AOmPf+YBC9jqZtsR7uqR1U0k6rEJaxJwWupgcDOsHLqOdQRjY6yT9HyM2JvrQDyu69qr0H3VkqyEqwjbSQWX3jpMQUKl4KBs8KsfgAexd3GF/B0tkvMUyxixNjTdpXCVX6Rc1xmP2zb/F1IvspoJlfUmbHY5ff/xw5vp2bvry6sPt1dn5+kkdY8upAtJUTO15wcCfnS8O4y53f7m/E/uHXpAOXh0WSOZUAjxkNe2bwp3dNQUaELzo1cTe33hPum5fUfbdsEsfDSy6/D1Vw9mTfO7+20rCL2jEBa/b68VTib32ay/gXhOvuuS42i4/Uum1qE3SY9PNKFfYH38Dqa77xJaASvABL+j4GX07myO6raKRvchXTLsmHIOjTshu3dMweaw6dk3f93Okev9ZUytC9xr2AovhNgqOq9D1kILCe9aKplaerZE2agT//4Fai3AZw==
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Cancel process instance
+
Cancels a running process instance. As a cancelation includes more than just the removal of the process instance resource, the cancelation resource must be posted.
-## Request
+
-
Path Parameters
Body
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
index d2f786710e6..56d2f6afbbf 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
@@ -5,79 +5,308 @@ description: "Complete a job with the given payload, which allows completing the
sidebar_label: "Complete job"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete job
+
Complete a job with the given payload, which allows completing the associated service task.
-## Request
+
-
Path Parameters
Body
variables objectnullable
+
-The variables to complete the job with.
+
-
result objectnullable
-
-The result of the completed job as determined by the worker. This functionality is currently supported only by user task listeners.
-
-
corrections objectnullable
-
-JSON object with attributes that were corrected by the worker.
-
-The following attributes can be corrected, additional attributes will be ignored:
-
-- `assignee` - clear by providing an empty String
-- `dueDate` - clear by providing an empty String
-- `followUpDate` - clear by providing an empty String
-- `candidateGroups` - clear by providing an empty list
-- `candidateUsers` - clear by providing an empty list
-- `priority` - minimum 0, maximum 100, default 50
-
-Providing any of those attributes with a `null` value or omitting it preserves
-the persisted attribute's value.
-
-
-
-The job was completed successfully.
-
-
-
-The job with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
index d8f84b3d7dc..64f893341ac 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
@@ -5,59 +5,253 @@ description: "Completes a user task with the given key."
sidebar_label: "Complete user task"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SuYPSVTmlRSp3V4Ux2ndZukHltuD7YPILiSEIMAA4CSNRz+984C1Lc1dTs5yjMai8Ji3368B5LbgucTB/kd3Dq0zHP3CA8JmBot99LoyxJyEKaqFXokkxFZJFCiE1bWZAI5nPcGjnHWLP2wufRT5qfIJnKGmj3iIoUEam55hR4tobageYWQQ9O7/gMXkIAkpzX3U0jA4rdGWiwh97bBXeTRFMkxM+OAtAb3hi3DJlQnplhxyFvwi5oAnbdST6DrHiIEOv+LKRdksUYcc+UwAWG0R+1pjde1kiKUJvvqKIR237cpvqLwlKulQnqJjlZn3EpeqHjBy1KSF66uNowOpbjaupnXTsZUbkp1NwjdKEV7o/cuAS6i53YHaMhE47ypWDRgM64aAuGezaVSrEDGhUDnZKGQja2pNtBxhto7ZtE1yks9iet+Kh1DXdZGas+knplYu5Rdjpk2ntXWzGSJZcJkj1LimDfKU6L3K+bdQ3qv17n1zdvLrUvAS0+XsORqT01p9HXsMnQd2Vl0tdEuNuPt4HS/HKPt6nK3KnzJXBMKMW6UWqTQJXA6GPyrhz05MME1FaHAteuUfTYWWYmeS+UYt7iqEZM67F+GzgpTLmJdDjC0tqZQWP2wz9Tdzl9Fyx6XRfIw7lg0LCL63fXHc/b+9N3PD6+m3tcuz7L5fJ7asTjBUnpjU2MnmR0L+pDd65SNpmiRVXwR+LNiPVtrg7kahRxLQT2nBPuwGXV7q+8HhBVXd6WdwNjYins6XazcO7OG7Pb6kskStZfjBTF2DzrsCWyEHHhhGp8XiutHWPNsH3QXxTVVxe3qhNoG6BJwnvtmIw2Q2uME7Wb8Uvsf3+75Jnr9NhpdseiCCVMiGxsbVdcDURKV1LJqKshPB4MEKv4Ur34aDDrySR1/QSaa4VOtuA7U2k1HalateRsSk9p5rsX36oyxciJ3cVPY1HxP4g8xo6jz0xdIe1+YpHZS5tg0ukyPAjsK7CiwgwJ7/z8EJt3ybja3Rk9ChZGJxlrUXi2Od8GjSI8i/X4ifffc4+lQM6qyJR6itcYyI4ICSzafShXch8f9Hrt/TTpq7ai1o9YOaa1LoEI/NTQ3qY0L1KFBRg4Z3RBP6IbosnZj3tFlYvWOSpMKtLPlcKSxCnJoo4i6PMvaqXG+y9vaWN9lM+rQ1lSBlqPYliRSRnA1jYHsN5MWaAKzTPKcV40uOTtj1xc3I/Yr9zjn8Q2XILddnw3OBs96JdMDHodXlyxmGKm4cTws3ZLOn3UbjV/iOEx1HIrGSr+4oW2xPAVyi3bYUD9WFOnxgne6jkaQ9F8+Lonz+9+j0Hs62q7XE6OLJ07d2x3wbMxZVrMmYujYBOieP/tJUEfRurhxkL7Z5+rVZZCcMFXV6HDu6kl8xOIbRRGqcZ6KkYCSArULEfbTtqXZp7jC/oqI7E1KDY2sWx63E+mnTZEKU2Uiblv9L5QpsopLnfUQLjsffr798mF48uny/OLLzcXJm3SQ+icfCkdyqLjejGM5yVo9K+6m265vNP9pytj31uOTz2rFpabqh8TaXo93sNYjJJBvTyA3JPmQ9LK6g7YtuMNbq7qOfv7WoF1AfvewVmGQbSkdfV8PEA+m9Oq6nzW+Zi+dZD6bWf8j14twIqiGriCBR1zsDFe7hy6BKfISbYg1WpzHiE5G5GftYW/a2SXLHUMhsPYHbLeeAkiLqyPx6s+bEUmrH7VWpqS9ls9p0svnkMM93FPkJlQrqDb83oLietLwCdlHv/T3D6vc4Us=
+api: eJztWE1z2zYQ/Ss7OCVTmlRSp014Ux2ndZukHltuD44PILiUEIMAA4CSNRz+984C1Icla+p2cpRnNBaFxb79eA8kt2OeTx3Lb9mNQwueu3t2lzDToOVeGn1RspwJUzcKPZLJhCwSVqITVjZkwnJ2Nhg44NCu/MBC+hn4GcJUzlHDPS5TlrCGW16jR0uoHdO8RpazdnD9By5ZwiQ5bbifsYRZ/NZKiyXLvW1xF3kyQ3IMpgpIG3BvYBU2oToxw5qzvGN+2RCg81bqKev7uwiBzv9iyiVZbBArrhwmTBjtUXta402jpAilyb46CqHb922Kryg85WqpkF6io9U5t5IXKl7wspTkhavLLaNDKa63bue1kzGVm1LdDUK3StHe6L1PGBfRc7cDNAbROm9qiAYw56olEO5hIZWCAoELgc7JQiFU1tRb6DhH7R1YdK3yUk/jup9JB6jLxkjtQeq5ibVL4aICbTw01sxliWUCckApseKt8pTolzXzvrD0i97kNjRvL7c+YV56umQrrg7UlEZfxS6zvic7i64x2sVmvB6d7pdj8ri63K0LX4JrQyGqVqllyvqEnY5G/+phTw4guKYiFLhxncInYxFK9FwqB9ziukYgddi/Ch0KUy5jXQ4wtLGmUFj/sM/U3c5fRssBFyJ5gDuIhkVEv736cAbvTt/8fPdi5n3j8ixbLBaprcQJltIbmxo7zWwl6EN2L1OYzNAi1HwZ+LNmPWy0Aa5BISspqOeU4BA2ULcf9f2AsOLqrrQTVhlbc0+ni5V7Z9YYbq4uQJaovayWxNg96LAnsJHljBem9XmhuL5nG57tg+6iuLauuV2fUI8B+oQ5z327lQaT2uMU7Xb8UvsfX+/5Jnr9NplcQnQBwpQIlbFRdQMQJVFLLeu2ZvnpaJSwmj/Eq59Go558UsefkYkGfGgU14Fau+lIDfWGtyExqZ3nWnyvzhgrp3IXN2Xbmh9I/D5mFHV++gxp7wuT1E7KrEyry/QosKPAjgI7KLB3/0Ng0q3uZgtr9DRUGEG01qL2anm8Cx5FehTp9xPpm6ceT8caqMqWeIjWGgtGBAWWsJhJFdyHx/0Be3hNOmrtqLWj1g5prU9YjX5maG7SGBeoQ4OMnGV0QzyhG6LLuq15R5+J9TsqTSrQzlfDkdYqlrMuiqjPs6ybGef7vGuM9X02pw49mirQchTbikTKCK5mMZD9ZtICTWBWSZ7xutUlh7dwdX49gV+5xwWPb7gE+dj129Hb0ZNeyfSAx/HlBcQMIxW3joeVW9L5k26j8XMch6mOQ9Fa6ZfXtC2Wp0Bu0Y5b6seaIgNe8E7X0Yglw5cPK+L8/vck9J6OtqvNxOj8gVP3dgc8W3OW9ayJGFqZAD3wZz8J6ihaFzeO0lf7XL28CJITpq5bHc5dPY2PWHyrKEK1zlMxEqakQO1ChMO0bWX2Ma7AXxERXqXU0Mi61XE7lX7WFqkwdSbitvX/Qpkiq7nU2QDhsrPxp5vP78cnHy/Ozj9fn5+8Skepf/ChcCSHmuvtOFaTrPWz4m663eZG85+mjENvPT74rFFcaqp+SKwb9HjLNnpkCcsfTyC3JHmXDLK6ZV1XcIc3VvU9/fytRbtk+e3dRoVBtqV09H0zQDyY0ourYdb4Ep47yXwys+FHrpfhRFAtXbGE3eNyZ7ja3/UJmyEv0YZYo8VZjOhkQn42HvamnX2y2jEWAht/wPbRUwBpcX0kXv55PSFpDaPW2pS01/IFTXr5IkZtQqWCYsNvHVNcT1s+Jdvok/7+ATmH4E8=
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete user task
+
Completes a user task with the given key.
-## Request
+
-
Path Parameters
Body
variables objectnullable
+
-The variables to complete the user task with.
+
-
-
-The user task was completed successfully.
-
-
-
-The user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx
index bca4971c318..87305b1edd4 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/correlate-message.api.mdx
@@ -5,59 +5,355 @@ description: "Publishes a message and correlates it to a subscription."
sidebar_label: "Correlate message"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Correlate message
+
-
+
Publishes a message and correlates it to a subscription.
If correlation is successful it will return the first process instance key the message correlated with.
The message is not buffered.
Use the publish message endpoint to send messages that can be buffered.
-## Request
+
-
Body
required
variables objectnullable
+
-The message variables as JSON document
+
-
-
-The message is correlated to one or more process instances
-
-
Schema
Schema
Schema
-
-The provided data is not valid
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx
index 61e1c54cac6..652ec3ef801 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-authorization.api.mdx
@@ -5,57 +5,400 @@ description: "Create the authorization."
sidebar_label: "Create authorization"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create authorization
+
-
+
Create the authorization.
-## Request
+
-
Body
required
+
-The authorization was created successfully.
+
-
Schema
Schema
Schema
-
-The authorization could not be created.
-More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The owner was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx
index 33f5d48df41..cb3c188f18f 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-deployment.api.mdx
@@ -12,106 +12,903 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Deploy resources
+
-
+
Deploys one or more resources (e.g. processes, decision models, or forms).
This is an atomic call, i.e. either all resources are deployed or none of them are.
-## Request
-
-
Body
required
-
-The resources are deployed.
-
-
Schema
deployments object[]
-
-Items deployed by the request.
-
-
Array [
processDefinition object
-
-Base properties for DeploymentProcess.
-
-
decisionDefinition object
-
-Base properties for DeploymentDecision.
-
-
decisionRequirements object
-
-Base properties for DeploymentDecisionRequirements.
-
-
form object
-
-Base properties for DeploymentForm.
-
-
resource object
-
-Base properties for DeploymentResource.
-
-
]
Schema
deployments object[]
-
-Items deployed by the request.
-
-
Array [
processDefinition object
-
-Base properties for DeploymentProcess.
-
-
decisionDefinition object
-
-Base properties for DeploymentDecision.
-
-
decisionRequirements object
-
-Base properties for DeploymentDecisionRequirements.
-
-
form object
-
-Base properties for DeploymentForm.
-
-
resource object
-
-Base properties for DeploymentResource.
-
-
]
Schema
deployments object[]
-
-Items deployed by the request.
-
-
Array [
processDefinition object
-
-Base properties for DeploymentProcess.
-
-
decisionDefinition object
-
-Base properties for DeploymentDecision.
-
-
decisionRequirements object
-
-Base properties for DeploymentDecisionRequirements.
-
-
form object
-
-Base properties for DeploymentForm.
-
-
resource object
-
-Base properties for DeploymentResource.
-
-
]
-
-The document upload failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx
index b99bcf23ce6..d5a10806b30 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx
@@ -5,31 +5,31 @@ description: "Create a link to a document in the Camunda 8 cluster."
sidebar_label: "Create document link (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtz2zYQ/is7OCVTilQeTVPeVCdp3ElTj6O0B9uHFbkSkYAAA4CWORr+984CpCVFSuy2mZ6iGVsSsdjX9+0Cq43wuHIivxAvTNHWpL24SoRpyKKXRp+WIheFJfQ0rr+R+qNIREmusLJhIZGLkyACCErqj+ANIJSDPEgNviI4wbrVJcJzKFTrPNn0Ul/qt8YT+Ao9+Eo6KFprSXvVgdGqA9c2jbHeAWqQelJTbWy31ey8sZTAupJFBdKBNh5qQu1haSw01pRtwQ5C6yhYy/NcG0+Xes7GSJeNkexhMHCBqqkQloS+tXT1ICtM3RhN2ruM0KpugkVBzmVBLv6fDNIurcuHgLqEGjtYELh28YEKz6koKtQrutRSw7JlYbCkCB25NHh0qUUiGrRYkyfLWGyExppELsZIT0uRCMmJbtBXIhGWPrXSUilyb1v6HI15RXD6AswyJP42Xd4EeFKRCFdUVKPIN8J3DVty3kq9En2f3BoP2d1a/tSS7fZML1G5+9oOykYP9peW1tT39akw2pP2r9FVd/r1RX3HXK7QVQdOD9YiP9fogBnReiph0R0Lr2zZALSNMlimcKtXOmjQ+gP9lpZkSRdDBUgHlnxrNZWwrkgPiljltpxYrXRQEZZk45YYd9wS7F2TlUtZhAqGQHRcKCpDVRy6ncLp8uv7mNe8r1AyAIZSOcayseZalhTXjLVMeFaUhCfsGDkPa6kUl4Qlrggq00st+qsIGDn/iyk7BukAvyH7vIZNowa/sg+OQdscwmtCxXEtWe5fXpILq7KmuXkjr2lHVmpPK7IiEUtja/Tx0bOnB42NMWQNE28mSl7TAYaBz1JD7dKweYmt8iJ/8mzKr75PhJdesc3dBnoeYxd9zxKWXGO0i/4+nj7it0M39k0GOoauW4JrQ2Natkp17MU3ylxr1WH1HEvQ2PR3E5NyndFNIy25mT+m5zbzJXqacJKPKi/DwcIMlDVFkvvR5qA/FV/K85Dgp9PpfXIa8sncZ4ZTmcLvoarJB8KjpZHx5XiojcjBwpRdGjr5F5LfWLNQVP9wCMK+VzM4i5KDXYjgADqIgoto/eL81Qn8/PTHn64eVN43Ls+y9Xqd2mUxoVJ6Y1NjV5ldFvzHcg9DQ7I0nlBYlpJtooIt7OAaKrgHjHAObgODF+O7o9rC6lfAbq08gHkG789PQZakvVx23O8OTO/WlsCFaX2+UMgA3wJ/F1Nn4Nq6RtuNNbxvoE+E8+hbd2ebePL4KFFfz+dnEFVAYUoa2i03/2iIg6illnVbi/zpdJqIGm/it2fTaTiWGPF7RKKZ+Qp1ZOtn4XAz2vI2BCa186iLb4WMsXIlP7e7X4QDiV/EiPpYhjX5yvCNsjEuUIcvM7nIxip02WZ74+kzrknHFwOy1+PFKPQksYnV0+dZtqmM832+4Xtin10zNNdoJR9cAUlejlU2skeZAlUVPThyETDO82VjjG57bT1/+W4Ov6KnNXYhq2xyX/Xz6fPpUa0s+gWNs7NTiBFGDu70hVEtF/hRtVH4Pop7PnEdFa2VvnvH22J6FoSW7KxlIG65MdgL2vl7FBLJ8OHVyJjf/poH0LmnnW9P85c3WDdDRe4cvuORyHRcmrgayXLoOKNI1sVIp+mjQ2KenYb6Kkxdtzo0Wb2CtfQV4JFRQyRCyYK0C14Nl8lR7E1cgT+jRXiUMoiRaWNvXUlftYu0MHVWxG237wtlFlmNUmeDCZedzH5///bFbPLm9OTl23cvJ4/SaepvfEgWc79GvetHHJ72z6IHYb54+Hngm+358n3o+q9D10B3Tzc+axRKzQU43Hpib7q4HcG4EeV781hsT1fJ0GIuxGazQEfvrep7fhwHE25apXThIn18ZNqF9N9PT0dj+Ujd3iB3japlKcEj1T/z6vuA9L8OSF8FdH8K3oJ6tT37/iHvHpwPSXoId/94cNSz4SHqbtel0eOdwumv+kREdIKTUeAkujKZs5qtgoPxhYkbd8yKghr/VdmrnSvH2R/v5nyCDdNmbUreY3HNPx3gWuTiUlyywyakJxyO4flGKNSrFlcsH/Xy62/pmbXP
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create document link (alpha)
+
Create a link to a document in the Camunda 8 cluster.
@@ -41,14 +41,127 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
+
-
Path Parameters
Query Parameters
Body
+
-The document link was created successfully.
+
-
Schema
-
-The document link creation failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx
index 59ec657484e..4a00666afdb 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx
@@ -12,22 +12,25 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Upload document (alpha)
+
-
+
Upload a document to the Camunda 8 cluster.
@@ -38,30 +41,209 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
-
-
Query Parameters
Body
required
metadata object
-
-Information about the document.
-
-
customProperties object
-
-Custom properties of the document.
-
-
-
-The document was uploaded successfully.
-
-
Schema
metadata object
-
-Information about the document.
-
-
customProperties object
-
-Custom properties of the document.
-
-
-
-The document upload failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx
index 936df1a4d4c..8ef78aafd0c 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-documents.api.mdx
@@ -12,22 +12,25 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Upload multiple documents (alpha)
+
-
+
Upload multiple documents to the Camunda 8 cluster.
@@ -47,50 +50,360 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
-
-
Query Parameters
Body
required
-
-All documents were uploaded successfully.
-
-
Schema
Array [
createdDocuments object[]
-
-Documents that were successfully created.
-
-
Array [
metadata object
-
-Information about the document.
-
-
customProperties object
-
-Custom properties of the document.
-
-
]
failedDocuments object[]
-
-Documents that failed creation.
-
-
Array [
]
]
-
-Not all documents were uploaded successfully. More details are provided in the response body.
-
-
Schema
createdDocuments object[]
-
-Documents that were successfully created.
-
-
Array [
metadata object
-
-Information about the document.
-
-
customProperties object
-
-Custom properties of the document.
-
-
]
failedDocuments object[]
-
-Documents that failed creation.
-
-
Array [
]
-
-The document upload failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx
index d36c22bb2da..9c27f26807e 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-element-instance-variables.api.mdx
@@ -5,52 +5,179 @@ description: "Updates all the variables of a particular scope (for example, proc
sidebar_label: "Update element instance variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update element instance variables
+
Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data.
Specify the element instance in the `elementInstanceKey` parameter.
-## Request
+
-
Path Parameters
Body
required
variables objectrequired
+
-JSON object representing the variables to set in the element’s scope.
+ { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n",
+ type: "boolean",
+ default: false,
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ required: ["variables"],
+ title: "SetVariableRequest",
+ },
+ },
+ },
+ }}
+>
-
{ \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n","type":"boolean","default":false}}>= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
-
-The variables were updated.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx
index 2d732822449..511afe5850a 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx
@@ -5,53 +5,275 @@ description: "Create group"
sidebar_label: "Create group"
hide_title: true
hide_table_of_contents: true
-api: eJztWFtv2zYU/isEnzZMkZw27TK9eWnaZeslSNztIckDRR5bbChS5SWOYOi/D4eUHSe2sz50wIA5QGBZPDrfuXwfaZ0F9WzmaHlF31kTWnqTUdOCZV4afSZoSbkF5iEtZtTC1wDO/2pER8sF5UZ70B4vWdsqyeNzxRdnNN5zvIaG4ZXvWqAlNdUX4J5mtLWI4iU4XNWsgTUr563UM5pRAY5b2aJPWtJJDURI1yrWEXyCmCnxNRANczLD+HLa9xn10iv0EkM+idFfpKhp36OBBdca7RL0i9EhfmwiRY9kzhxJFRDEBc7BuWlQqstp9r2Sj0B/QLc9jFvolnku4xhyzZ6Ua2fuLigfV9ejvNMi56wJWrCctTK/hc7lOjQV2J82MxDQWuCITktvA2T/dk5Se5iBpRmdGtswn269Pnomy9jTb8szVWxLnv+NTuH60Wj0HC+5CUoQbTypVnD5tf5gLBABnknlCLNAWmvupABBpI6RLblPKiO6/FrvpnFrTaWg2UqG9ZjG5DxZDrgkFY8wR5JhldCvLt6ekF+OXv1880PtfevKopjP57md8gMQ0hubGzsr7JTjP9r9mJNJDRZIwzrMkgkhEZMp8tAW4lrgcio58SYmOIRNsOIpv+d7mlY3t54V7YKVGzvRmHy+OCNSgPZy2kk924SOz0wZNrSkrDLBl5Vi+pY+9P6f9rsxcaFpmF3R6jFAn1HnmQ9raeyQzcsXW/fS3yaTc5JcEG4EkKmxxNfSLYEwiUZq2YSGlkejUUYbdp++vR6NevSJHf+GTDSB+1YxHan1NB2pSfPA25iY1M4zzb9XZ4yVM/kU9/FpMZD4TcpoqcEdZ8NwChLF+K0jd0xJQVjwNaIm+aAmYxBMuWfOir3I9iL734vs5Sbf3xpbSSFAR3qu9CZdPPKYUmYOYq+rva72utqlq1fbfkCONcEqW+QhWGssMZwHa0GQeS1VdI/vOEvsQXj7H4p7re21tktr/VPf6XUuvalhZcDXBkcprXGRV8zXtKRFXHc0ow7sHVgcwixosIqWdJFE1JdFsaiN8325aI31fXGHHbpjVrJKJV7ichLbkkTKcKbqhLXZTFxYn56cpJdjckwuTi8n5B3zMGddLC5CPnZ9PDoebfWKpjs8js/PSMowUXFte1i6RZ1vdZuMv8Vx399gIXmw0neX+FgqTwXMgh0HLPmKIgNe9I7fkxHNhou3S+L8/tck9h63touHydfpPWvaJMw0uVq92CMhpyYiDXTZjBkbCNalJEf54SY1z8+iwrhpmqDjNqtnZC59TdhaDbgKzmPuGVWSAw4/HgJamr1PK+TPhEgOc+xfItlyd51JX4cq56YphknJ6rNSpioaJnUxQLjiZPzh88c344P3ZyenHy9PDw7zUe7v04AJCd4wvR7HYyk8SnTVDg/3vmgVkxorGINbDCq5ooNKbrKB6Vd0saiYg89W9T3e/hrAdrS8unkQBn7rM1oDE2CjrG5xakNP0gl2MEFcNFcB8Temd322fGLMObT+WdubNYWff7qcII2G8WhjBD5j2RxHp2xOS3pNrynFGSt6iAyN9xdUMT0LbIb2yS/+/Q0Krnl9
+api: eJztWFtv2zYU/isEnzZMkZw27Tq9eWnSZeslSNztIc0DRR5bbChS5SWOYOi/D4eUHSe2szx0wIA5QGBZPDzfuXwfZZ0F9WzmaHlF31kTWnqdUdOCZV4afSZoSbkF5iEtZtTCtwDO/2pER8sF5UZ70B4vWdsqyeO+4qszGu85XkPD8Mp3LdCSmuorcE8z2lpE8RIcrmrWwJqV81bqGc2oAMetbNEnLemkBiKkaxXrCO4gZkp8DUTDnMwwvpz2fUa99Aq9xJCPY/QXKWra92hgwbVGuwT9YnSIH5tI0SOZM0dSBQRxgXNwbhqU6nKafa/kI9Af0G0P4wa6ZZ7LOIZcs0fl2pm7C8rH1fUob7XIOWuCFixnrcxvoHO5Dk0F9qfNDAS0Fjii09LbANm/nZPUHmZgaUanxjbMp1uvj57IMvb0eXmmim3J87/RKVw/Go2e4iU3QQmijSfVCi7/oj8YC0SAZ1I5wiyQ1ppbKUAQqWNkS+6Tyogu/6J307i1plLQbCXDekxjcp4sB1ySikeYI8mwSuhXF6fH5JejVz9f/1B737qyKObzeW6n/ACE9Mbmxs4KO+X4j3Y/5mRSgwXSsA6zZEJIxGSK3LeFuBa4nEpOvIkJDmETrHjK7+meptXNo2dFu2Dlxkk0Jp8vzogUoL2cdlLPNqHjninDhpaUVSb4slJM39D73v/TeTcmLjQNsytaPQToM+o882EtjR2yefli61n622RyTpILwo0AMjWW+Fq6JRAm0Ugtm9DQ8mg0ymjD7tK316NRjz6x48/IRBO4axXTkVqP05GaNPe8jYlJ7TzT/Ht1xlg5k49xHz4tBhK/TRktNbjj2TA8BYli/MaRW6akICz4GlGTfFCTMQim3BPPir3I9iL734vs5SbfT42tpBCgIz1XepMuPvKYUmYOYq+rva72utqlq1fbfkCONcEqW+QhWGssMZwHa0GQeS1VdI/vOEvsQXj7H4p7re21tktr/WPf6XUuvalhZcDXBkcprXGRV8zXtKRFXHc0ow7sLVgcwixosIqWdJFE1JdFsaiN8325aI31fXGLHbplVrJKJV7ichLbkkTKcKbqhLXZTFxYn54cp5dj8oZcnFxOyDvmYc66WFyEfOj6zejNaKtXNN3hcXx+RlKGiYprx8PSLep8q9tk/BzHfX+NheTBSt9d4rZUngqYBTsOWPIVRQa86B2/JyOaDRenS+L8/tck9h6Ptov7ydfJHWvaJMw0uVq92CMhpyYiDXTZjBkbCNalJEf54SY1z8+iwrhpmqDjMatnZC59TdhaDbgKzmPuGVWSAw4/7gNamr1PK+TPhEgOc+xfItnydJ1JX4cq56YphknJ6rNSpioaJnUxQLjiePzh88e344P3Z8cnHy9PDg7zUe7v0oAJCd4wvR7HQyk8SHTVDg93vmgVkxorGINbDCq5ooNKrrOB6Vd0saiYg89W9T3e/hbAdrS8ur4XBn7rM1oDE2CjrG5wakOP0xPsYIK4aK4C4m9M7/psuWPMObT+SdvrNYWff7qcII2G8WhjBO6xbI6jUzanJaU4X8XdkZ3x3oIqpmeBzdA2+cS/vwE3oHiB
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create group
+
-
+
Create group
-## Request
+
-
Body
+
-The group was created successfully.
+
-
Schema
Schema
Schema
-
-The group could not be created.
-More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx
index 640dedc138f..71a1e8fea7a 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx
@@ -5,53 +5,340 @@ description: "Create a new mapping rule"
sidebar_label: "Create mapping rule"
hide_title: true
hide_table_of_contents: true
-api: eJztWcty2zYU/RXMXbVTmpQT51HuFMdp3caJx5bTha0FCF6JiEGAAUDLGg3/vXMJyqIs+dG0m0zlGY/4uLyvcw4AggvwfOogvYQTXlVST5mtFcI4AlOh5V4afZxDCsIi99jZnJFJBDk6YWVFNpDCYWvBONM4Y2XP2ZWGCCx+q9H5dyafQ7oAYbRH7emQV5WSoo2UfHXkagFOFFhyOvLzCiEFk31F4SGCylJeXqJr3Sguy0+8xJ6p81bq6UZ6owKZ5iUyM2G+QNY+yryhVGNoouDrC1f1M53dkOmD3vR3JdW1LYamCS2TFnMCZ1XoWqJdnHEEXnpFgXoIBUDOQuOhaYJPVxntQvdeDPbpZzOlPnpsxh0L6OfM1UKgc5NaqXlMqXwvjFypzxNIL//XAD+CWUDpHXcIzfh+Uzonf+J8O3zXOL9LuwOujygBt571U8nUyrc2fYxvdB4LXtY65zGvZHyNcxfruszQ/rLD/wfBX2qPU7QQwcTYkvtw6fXB89J7HidCZ3ac+FE48Y/GBLI6GAyeMY0IU6ucaeNZdpfCI1NIZU2msNxCm/U4Q3YaLFmOnkvFAmkYdywYZpgzqdnl2YdD9uvBqzfjnwrvK5cmyWw2i+1E7GEuvbGxsdPETgT9k93PMRsVaKmKOaXM81xSTK7YqvPMVSjkRApiAfW2S5tRL+N24fM4l8PdTcbcybG2coNAQ3ZxdsxkjtrLyZw6vBG6fWbCCaQUeGZqn2aK62tYofoUTYfM1WXJ7R1v1gM0ETjPfd0r44Hh5OWLrRL4fTQ6ZcEFEyZHNjGW+UK6ZSAqopRalnUJ6cFgEEHJb8PZ68GgIZ+E+DMq0QxvK8V1S6375UjNSmOx409bmNTOcy3+K2SMlVN5P+663DsSvw8VLXX1cruuurU0cU4sF90bS7YctcQ8vtInq+Ic47ZN4EbmQRa+dRdGFpaZfB5IuxPlTpQ7UW4X5cG/F+VOYTuF7RT2gMJebVtODjWjLlviIVprLDNC1NZizmaFVK172plYxu7UuJvNdlrbae0hrTURlOgLQ/u7lXEtdbgvIIWkm7n2aOZyEIFDe4PWtW/ntVWQwiLIpUmTZFEY55t0URnrm+SGsLjhVvJMBQbS7SCrJV2UEVwVIeQmbHSj/4J8GLYU2Ft2dnQ+Yr9xjzM+b9tIIdddvx28HWz1SqYPeByeHrNQYSBdbyBYuiVFb3UbjJ/juKG3doeittLPz+mx0J4MuUU7rKnzd2To4rXe6TwYQdQdfFhS5I+/Ri3KNIidrfbYj255WQUJ9rZLVhTr73usruo1q5alE9Mm1XFoszzCGq0L/RjE+5t8PT1uZSdMWda6HXv1lM2kLxjvtUuo2nlqUwRKCqTdpXSxTGhp9jHcYV9CRLYfE9SBj8shdyp9UWexMGXSbUXd/WbKZEnJpU66EC45HJ5cfHo/3Pt4fHj06fxobz8exP427HaSJEqu+3mEhV1/WXe/3t6njSe+iHRAe7z1SaW41NTwtpZFJ8NLWJfhOOqkdAmLRcYdXljVNHT5W412DunleKU8OmsiKJDnaFvdXtPeEByG9PZGFJ7MAwc2tu+baPnEUAis/KO2495Icvr5fEQ87b70lCanZyyf0VcgPoMUruAKgD4wkYdWAu31BSiupzWfkn3wS39/AyK5NO0=
+api: eJztWU1z2zYQ/SuYPbVTmpQTJ3F5UxyndRs7HltOD44OILgSEYMAA4CWNRr+984SlEVZsuOmvWQqz3jEj8V+vfdAEFyA51MH6TWc8qqSespsrRDGEZgKLffS6JMcUhAWucfO5oJMIsjRCSsrsoEUjloLxpnGGSt7zj5riMDi1xqdf2vyOaQLEEZ71J4OeVUpKdpIyRdHrhbgRIElpyM/rxBSMNkXFB4iqCzl5SW61o3isjzjJfZMnbdSTzfSGxXINC+RmQnzBbJ2KPOGUo2hiYKvT1zVz3R2S6aPetPflVTXthiaJrRMWswJnFWha4l2ccYReOkVBeohFAC5CI2Hpgk+XWW0C917Mdinn82U+uixGXcsoJ8zVwuBzk1qpeYxpfK9MHKlPk4gvf5fA/wEZgGlt9whNOOHTemc/Inz7fDd4Pw+7Q64PqIE3HrW30qmVr616WN8q/NY8LLWOY95JeMbnLtY12WG9pcd/j8I/lJ7nKKFCCbGltyHS68Pnpfe8zgROrPjxI/CiX80J5DVwWDwjMeIMLXKmTaeZfcpPPEIqazJFJZbaLMeZ8jOgyXL0XOpWCAN444FwwxzJjW7vnh/xH49ePVm/FPhfeXSJJnNZrGdiD3MpTc2Nnaa2Imgf7L7OWajAi1VMaeUeZ5LiskVW3WeuQqFnEhBLKDedmkz6mXcLnye5nK4u8mYeznWVm4QaMiuLk6YzFF7OZlThzdCt2MmnEBKgWem9mmmuL6BFarfoumQubosub3nzXqAJgLnua97ZTwynbx8sVUCv49G5yy4YMLkyCbGMl9ItwxERZRSy7IuIT0YDCIo+V04ez0YNOSTEH9GJZrhXaW4bqn1sBypWWksdvxpC5Paea7Ff4WMsXIqH8Zdl3tH4nehoqWuXm7XVbeWJs6J5aJ7Y8mWo5aYx5/16ao4x7htE7iVeZCFb92FmYVlJp8H0u5EuRPlTpTbRXnw70W5U9hOYTuFPaKwV9uWk0PNqMuWeIjWGsuMELW1mLNZIVXrnnYmlrE7Ne6eZjut7bT2mNaaCEr0haH93cq4ljrcF5BC0j259ujJ5SACh/YWrWvfzmurIIVFkEuTJsmiMM436aIy1jfJLWFxy63kmQoMpNtBVku6KCO4KkLITdjoRv8F+ShsKbBDdnF8OWK/cY8zPm/bSCHXXR8ODgdbvZLpIx6H5ycsVBhI15sIlm5J0VvdBuPnOG7ord2hqK3080saFtqTIbdohzV1/p4MXbzWO50HI4i6g/dLivzx16hFmSaxi9Ue+/EdL6sgwd52yYpi/X2P1VW9ZtWydGLapDoObZZHWKN1oR+DeH+Tr+cnreyEKctat3OvnrKZ9AXjvXYJVTtPbYpASYG0u5QulgktzT6EO+xTiMj2Y4I68HE55U6lL+osFqZMuq2o+99MmSwpudRJF8IlR8PTq7N3w70PJ0fHZ5fHe/vxIPZ3YbeTJFFy3c8jLOz6y7qH9fY+bXzji0gHtMc7n1SKS00Nb2tZdDK8hnUZjqNOStewWGTc4ZVVTUOXv9Zo55Bej1fKo7MmggJ5jrbV7Q3tDcFRSG9vROHJPHBgY/u+iZYjhkJg5Z+0HfdmkvOPlyPiafelpzQ5jbF8Rl+B+AxSAPq4RKNb+rfXFqC4ntZ8SrbBJ/39DWH6M/E=
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create mapping rule
+
-
+
Create a new mapping rule
-## Request
+
-
Body
+
-The mapping rule was created successfully.
+
-
Schema
Schema
Schema
-
-The mapping rule could not be created.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The request to create a mapping rule was denied.
-More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The request to create a mapping rule was denied.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
index 7ff90e1b87c..6218cb1d33a 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
@@ -5,29 +5,32 @@ description: "Creates and starts an instance of the specified process."
sidebar_label: "Create process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create process instance
+
-
+
Creates and starts an instance of the specified process.
The process definition to use to create the instance can be specified either using its unique key
@@ -36,63 +39,496 @@ The process definition to use to create the instance can be specified either usi
Waits for the completion of the process instance before returning a result
when awaitCompletion is enabled.
-## Request
+
-
Body
required
variables object
+
-JSON object that will instantiate the variables for the root variable scope
-of the process instance.
+0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ startInstructions: {
+ description:
+ "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n",
+ type: "array",
+ items: {
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n',
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationStartInstruction",
+ },
+ },
+ awaitCompletion: {
+ description:
+ "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n",
+ type: "boolean",
+ default: false,
+ },
+ fetchVariables: {
+ description:
+ "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n",
+ type: "array",
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ processDefinitionKey: {
+ description:
+ "The unique key identifying the process definition, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n",
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationInstruction",
+ },
+ examples: {
+ "By process definition key": {
+ summary: "Create a process instance by processDefinitionKey.",
+ value: { processDefinitionKey: "12345", variables: {} },
+ },
+ "By process definition ID": {
+ summary:
+ "Create a process instance by processDefinitionId and version.",
+ value: {
+ processDefinitionId: "1234-5678",
+ version: 1,
+ variables: {},
+ },
+ },
+ },
+ },
+ "application/vnd.camunda.api.keys.number+json": {
+ schema: {
+ deprecated: true,
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for CreateProcessInstanceRequest",
+ type: "object",
+ properties: {
+ processDefinitionId: {
+ description:
+ "The BPMN process ID of the process definition to start an instance of.\nCannot be used together with processDefinitionKey.\n",
+ type: "string",
+ },
+ processDefinitionVersion: {
+ description:
+ "The version of the process. Only considered when a processDefinitionId is provided.\nBy default, the latest version of the process is used.\n",
+ type: "integer",
+ format: "int32",
+ default: -1,
+ },
+ variables: {
+ description:
+ "JSON object that will instantiate the variables for the root variable scope\nof the process instance.\n",
+ type: "object",
+ additionalProperties: true,
+ },
+ tenantId: {
+ description: "The tenant ID of the process definition.",
+ type: "string",
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ startInstructions: {
+ description:
+ "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n",
+ type: "array",
+ items: {
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n',
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationStartInstruction",
+ },
+ },
+ awaitCompletion: {
+ description:
+ "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n",
+ type: "boolean",
+ default: false,
+ },
+ fetchVariables: {
+ description:
+ "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n",
+ type: "array",
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ processDefinitionKey: {
+ description:
+ "The unique key identifying the process definition, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequest",
+ },
+ },
+ "application/vnd.camunda.api.keys.string+json": {
+ schema: {
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for CreateProcessInstanceRequest",
+ type: "object",
+ properties: {
+ processDefinitionId: {
+ description:
+ "The BPMN process ID of the process definition to start an instance of.\nCannot be used together with processDefinitionKey.\n",
+ type: "string",
+ },
+ processDefinitionVersion: {
+ description:
+ "The version of the process. Only considered when a processDefinitionId is provided.\nBy default, the latest version of the process is used.\n",
+ type: "integer",
+ format: "int32",
+ default: -1,
+ },
+ variables: {
+ description:
+ "JSON object that will instantiate the variables for the root variable scope\nof the process instance.\n",
+ type: "object",
+ additionalProperties: true,
+ },
+ tenantId: {
+ description: "The tenant ID of the process definition.",
+ type: "string",
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ startInstructions: {
+ description:
+ "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n",
+ type: "array",
+ items: {
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n',
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationStartInstruction",
+ },
+ },
+ awaitCompletion: {
+ description:
+ "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n",
+ type: "boolean",
+ default: false,
+ },
+ fetchVariables: {
+ description:
+ "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n",
+ type: "array",
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ processDefinitionKey: {
+ description:
+ "The unique key identifying the process definition, for example, returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n",
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationInstruction",
+ },
+ },
+ },
+ }}
+>
-
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>startInstructions object[]
-
-List of start instructions. By default, the process instance will start at
-the start event. If provided, the process instance will apply start instructions
-after it has been created.
-
-
Array [
]
Body
required
variables object
-
-JSON object that will instantiate the variables for the root variable scope
-of the process instance.
-
-
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>startInstructions object[]
-
-List of start instructions. By default, the process instance will start at
-the start event. If provided, the process instance will apply start instructions
-after it has been created.
-
-
Array [
]
Body
required
variables object
-
-JSON object that will instantiate the variables for the root variable scope
-of the process instance.
-
-
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>startInstructions object[]
-
-List of start instructions. By default, the process instance will start at
-the start event. If provided, the process instance will apply start instructions
-after it has been created.
-
-
Array [
]
-
-The process instance was created.
-
-
Schema
variables object
-
-All the variables visible in the root scope.
-
-
Schema
variables object
-
-All the variables visible in the root scope.
-
-
Schema
variables object
-
-All the variables visible in the root scope.
-
-
-
-The provided data is not valid.
-
-
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx
index d94da1d9422..99fe6062a56 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx
@@ -5,53 +5,275 @@ description: "Create a new role."
sidebar_label: "Create role"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/Ss7e2qnNCUnTprypjp26zYfHltpD7YPILgSEYMAA4CWNRr+984S1EciyfUhnelBmtGIJJa7+3bfA8VdYBBTj9kNXllNeJegrcmJoKy5KDBD6UgE6tYSLMhLp2pexAxPuyUQYGgGzmpKbw0m6OhLQz78aos5ZguU1gQygQ9FXWslO9+Dz559LNDLkirBR2FeE2Zo888kAyZYO84kKPK8akRFG1Y+OGWmWymNS4JC+VqLOfAdYCcQSlpniG2bYFBBsxNGFUFcxZyxbXndka+t8THwi+Ex/2zHYX8wEx5iiQrwjZTk/aTReh5L8Z2wc6Q/ab47jXuaL1EuE4lIk29qtQ+5b3ToFjdTfDBFKkXVmEKkolbpPc19apoqJ/fTdvoF1Y4kx8YsuIaS/xaQMoGm5DDBiXWVCPHS65P9ELt2Pg9krNYOkP+DHvHyyXD4BB+lbXQBxgbIV7HSW/PeOoKCglDag3AEtbMPqqAClOnSWlIecls8Td7a2VxTtZMFmymN4DJa9nEhFg6Eh2iYx+g3V+en8MvJq5/vfihDqH02GMxms9RN5BEVKliXWjcduInkL9v9mMK4JEdQiTmjFEWhOKbQsG4J+JqkmigJwXYA+7SB6x3xPd3PuLq936wY1zi1tf2M4NPVBaiCTFCTuTLT7dDdPRPB/cxQ5LYJWa6Fucd15/9tkxuBb6pKuBWnvg7QJuiDCM0GjD2Kefli5wb6+3h8CdEFSFsQTKyDUCq/DMQgKmVU1VSYnQyHCVbiMZ69Hg5b9skdfwYSA/RYa2E6an0LRxmo1rztgCnjgzDye3XGOjVV38b9+hnRk/htRLSU4L5HQnyMgBby3sOD0KoA0YSSo0b5sCa7JIT26UFkB5EdRLZXZC+3+X5uXa6KgkxHz5XelO8eeUJrO6PioKuDrg662qerV7v+P44McJUd85Ccsw6slI1zVMCsVLpzz+82y9i98A5/FA9aO2htn9baBCsKpeUxSm19Rx0RSsxwwO9qHhP05B7I8fhlgY3TmOEiyqTNBoNFaX1os0VtXWgHD9yDB+GUyHVkHi9HOS1poq0UuoyhttvFC5tDkdP46gtv4Orsegy/iUAzMe/KxyG/dv1m+Ga40yub7vE4uryAiDCSbWMDWLplJe90G42f47ht77iQsnEqzK/5tlienIQjN2q44isS9PE673wejTDpD86X1Pjj73HXXd68rtYDrbNHUdVRenEgtXpxZ8pNbBepJ8R2ztxAcj6CHKbH2+S7vOg0JG1VNabbSM0UZiqUIDZqIHXjA2NPUCtJPNpYJ7Q0exdX4K8YEY5T7l8k2XL/nKpQNnkqbTXo5yCr31zbfFAJZQZ9CD84Hb3/9OHt6OjdxenZh+uzo+N0mIbHODtiflfCbOYRp4Nux+RwYyi4b4jYtyvQYxjUWijDFe6SX/QiusEoorukF8INLha58PTJ6bbly18acnPMbu7WuuGzNsGSREGuU909z2zwNOZzNOawbK4bDr81tGuT5R0jKakOT9rebej/8uP1mFnWD0UrW/A9Tsx4YCpmmOEt3iLy9JU9xJESX1+gFmbaiCnbR7/8+Qd3+H77
+api: eJztWE1z2zYQ/Ss7OLVTmpQTN015Ux2ndZukHltpD44PS3AlIgYBBgAtazT8750lqI9EkptDOtODPOMRKSx29+2+B4q7FAFnXuS34tpqEneJsA05DMqay1LkQjrCQP1aIkry0qmGF0UuzvslQDA0B2c1pR+MSISjTy358IstFyJfCmlNIBP4EptGK9n7zj569rEUXlZUI1+FRUMiF7b4SDKIRDSOMwmKPK8arGnLygenzGwnpUlFUCrfaFwA7wA7hVDRJkPRdYkIKmh2wqgiiOuYs+g6XnfkG2t8DPxsdMofu3HYH8zRQyxRCb6VkryftlovYim+EXaO9Act9qdxT4sVylUiEWnyRa0OIfetDv3idooPpkwl1q0pMcVGpfe08Klp64LcD7vpl9Q4khxb5MG1lPy3gJQJNCMnEjG1rsYQv3pxdhhi386vAxmrtQfk/6BHvHw2Gj3BR2lbXYKxAYp1rPSDeWsdQUkBlfaAjqBx9kGVVIIyfVorykNhy6fJ2zhbaKr3smA7pTFcRcshLsTCAXqIhkWMfnv9+hx+Pvvxp7vvqhAan2fZfD5P3VSeUKmCdal1s8xNJf+z3fcpTCpyBDUuGCWWpeKYqGHTEvANSTVVEoLtAQ5pA9c74nu6n3F197xZM651auf4GcP760tQJZmgpgtlZruh+z1T5H7mAgvbhrzQaO7FpvP/dsiNwbd1jW7Nqc8DdInwAUO7BeOAYp4/23uA/jaZXEF0AdKWBFPrIFTKrwIxiFoZVbe1yM9Go0TU+BjvXoxGHfvkjn8FEgP02Gg0PbW+hKMM1Bve9sCU8QGN/FadsU7N1JdxP39GDCR+FRGtJHjokRAfI6BR3nt4QK1KwDZUHDXKhzXZJ4Hap0eRHUV2FNlBkT3f5ftr6wpVlmR6eq71pnz/yEOt7ZzKo66Oujrq6pCuftz3+3FsgKvsmIfknHVgpWydoxLmldK9e363WcUehHf8oXjU2lFrh7TWJaKmUFkeozTW99TBUIlcZPyu5kUiPLkHcjx+WYrWaZGLZZRJl2fZsrI+dPmysS502QP34AGdwkJH5vFylNOKJtpK1FUMtdsuXtgeipzHV194CdcXNxP4FQPNcdGXj0N+7vrl6OVor1c2PeBxfHUJEWEk29YBsHLLSt7rNhp/jeOuu+NCytapsLjhbbE8BaEjN2654msSDPF673wfjUQyXLxeUeP3vyd9d/nwut4MtC4esW6i9OJAav3izpSb2j7SQIjdnLmB5HwEOUpPd8l3ddlrSNq6bk1/kJoZzFWoALdqIHXrA2NPhFaSeLSxSWhl9iauwF8xIpym3L9IstX5OVOhaotU2job5iDrz0LbIqtRmWwI4bPz8dv3716NT95cnl+8u7k4OU1HaXiMsyPmd41mO484HXR7JodbQ8FDQ8ShXYEeQ9ZoVIYr3Ce/HER0K6KI7pJBCLdiuSzQ03unu46//tSSW4j89m6jG77rElERluR61d3zzEacx3xOJhyWzXXL4XeGdl2y2jGWkprwpO3dlv6v/ryZMMuGoWhtS97jcM4DU5yLXAievPLuOE7i75ZCo5m1OGPb6JP//gGO8n3/
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create role
+
-
+
Create a new role.
-## Request
+
-
Body
+
-The role was created successfully.
+
-
Schema
Schema
Schema
-
-The role could not be created.
-More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The authorization with the authorizationKey was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx
index 6d0c334ab44..027b7168162 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/delete-document.api.mdx
@@ -12,24 +12,24 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete document (alpha)
+
Delete a document from the Camunda 8 cluster.
@@ -41,18 +41,120 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
+
-
Path Parameters
Query Parameters
+
-The document was deleted successfully.
+
-
-
-The document with the given ID was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx
index f63a4beccdc..e709cb553c6 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx
@@ -12,41 +12,176 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete group
+
-
+
Deletes the group with the given key.
-## Request
+
-
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The mapping rule with the mappingKey was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
index 286164203fc..c74e6f5a259 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
@@ -5,53 +5,209 @@ description: "Deletes a deployed resource."
sidebar_label: "Delete resource"
hide_title: true
hide_table_of_contents: true
-api: eJztWN9v2zYQ/leIe2oxRXK6tOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryrxjrw16GJYARSzze8b77vjPJNTi+tJDewAytbkyGcBeBrtFwJ7S6zCGFHCU6HMcjyNFmRtRkACm88cOWcZZjLXWLOTO9bXyr5qWwLOOKLZBxVhudobUsx0IoQQ4ilmMmrNCKGfzaCIMVKrdroQ0rtKm23t2qMVZjhVoyV2IffgxuGaq81kK5mF3XmImi9WbDOGt1w1ZcOeY0CzkyobzJp8Hmd2w/sZobXqFDE98qiGB8JNjWoHiFkMLWDIhAEDA1dyVE0KeVQ+pMg/vozUtkX7Bluthd3LimPQzdxv5xOHcMHsWWwBvsCdudGQdAQwQ2K7HikK7BtTUla50RaglddxfSQ+t+1nlLFptsCy4tRpBp5VA5GuN1LUXmiZV8tpT++tC3XnzGzEEEqpGSLyQOuNWGaOkEWrIeKTrDAg2qDOntLrZTZoZBn2BWaouKLQIPGouUO3dsJaQkbGtunEdBSmYw0ya3VJBGOqJYYXTFHJVijB3fqveNdTT3JzZhoqCK3Isc80CVPiWhHC7RQASELnfh1asziKASSlRNBelp10XghKN8e0kNipsFhKHryMagrbWyAYUXk8lh2vNtHgnb8yiPoYvg7NiEYeEs547TLKUdu+dS5DEcLWJt9EJi9d1hMfcLcRUsWY6OC8lCkRmnxZHhAnPS3s3s7Tn78ezlD3fPSudqmybJarWKTZGdYC6cNrE2y8QUGX3I7nnM5iUaZBVvfYfJc09bLtmGLsx69YuMROVCrn4xVJ6dQo3c2+VaGN1n/1Y1GyMO2uKUfZxdMpGjcqJohx61E9rPKXgjyQdf6MalC8nVF9hQ4TDofhTbVBU3YwPZDdBFYB13zVYaR9j4/YsD30SLX+fzKxZcsEznSP0hiKAPFG+T+GwyiaDiD+Hp1WTSkU+q+Ddkohg+1JIrHvrSbjpCsUob7PnjExPKOt7r/l+ojDZiKfbjxrAty57Eb0JGQY5nk7N/ViBpqdCNetLSk5aetHRUSy8f+3GaKkYoG+IhGqMN01nWGIM5W5VC4rAJGmL3+5HAxSetPWntSWuHWusiqNCVmo53tbaeOnRaSSEZj0/JeutM0yV+F0kLicCiuR+OP42RkMI6KKhLk2Rdauu6dF1r47rknspzz42gnbyvJg0HpQ0MkjrjsgyrOKwkDdAZa8jwnFeNyjl7zWYX13P2C3e44q1HlkLuun49eT151CuZHvE4vbpkIcPAw63eMLglkT/qNhh/i2N/drKYNUa49pqmBXgWyA2aaUPFGPnRx/Pe6TkYQdR/eTuw5re/5r7w1Ndmm3PZxQOv6qDKx45NE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWbCVcyfgWFJlsLJ2lIQIpMlTWr6s/RQ9m78II+zNEZKcxlTFwbeiwS+HKZhFnukqyMG38v5B6kVRcqKQPYZPz6fuPH95MT95dnl98uL44OY0nsXtwHi5SQMXV1jrCAWzcw+3nut78sPzvrj96Sjp8cEktuVAkEl+Zdd9DbsbLEAsRpLs3I2MbuYv6VnAD6/WCW/xoZNfR668NmhbSm7tN5/CtJheWvm+uFo7W5Nmsv4V4zv4L9yuPQtq/5Kr1HVQ29AQRfMF277qpu+siKJHnaDxOweI8oHEyJz8bDwd3MF00zJhmGdbuiO3Olol61/j7cfXH9ZxaUX8BVOnc34fxFd198RWkcAu3tHLtK+W7nH+/BsnVsuFLsg9+6e9vU6MrCQ==
+api: eJztWN9v2zYQ/leIe2oxRXK6tOv0MMBL0y1b2wWOuz0kAUpLJ4stRaokFUcw9L8PR0ryrxjrw16GJYARSzze8b77vjPJNTi+tJDewAytbkyGcBeBrtFwJ7S6zCGFHCU6HMcjyNFmRtRkACm88cOWcZZjLXWLOTO9bXyr5qWwLOOKLZBxVhudobUsx0IoQQ4ilmMmrNCKGfzaCIMVKrdroQ0rtKm23t2qMVZjhVoyV2IffgxuGaq81kK5mF3XmImi9WbDOGt1w1ZcOeY0CzkyobzJp8Hmd2w/sZobXqFDE98qiGB8JNjWoHiFkMLWDIhAEDA1dyVE0KeVQ+pMg/vozUtkX7Bluthd3LimPQzdxv5xOHcMHsWWwBvsCdudGQdAQwQ2K7HikK7BtTUla50RaglddxfSQ+t+1nlLFptsCy4tRpBp5VA5GuN1LUXmiZV8tpT++tC3XnzGzEEEqpGSLyQOuNWGaOkEWrIeKTrDAg2qDOntLrZTZoZBn2BWaouKLQIPGouUO3dsJaQkbGtunEdBSmYw0ya3VJBGOqJYYXTFHJVijB3fqveNdTT3JzZhoqCK3Isc80CVPiWhHC7RQASELnfh1asziKASSlRNBelp10XghKN8e0kNipsFhKHryMagrbWyAYUXk8lh2vNtHgnb8yiPoYvg7NiEYeEs547TLKUdu+dS5DEcLWJt9EJi9d1hMfcLcRUsWY6OC8lCkRmnxZHhAnPS3s3s7Tn78ezlD3fPSudqmybJarWKTZGdYC6cNrE2y8QUGX3I7nnM5iUaZBVvfYfJc09bLtmGLsx69YuMROVCrn4xVJ6dQo3c2+VaGN1n/1Y1GyMO2uKUfZxdMpGjcqJohx61E9rPKXgjyQdf6MalC8nVF9hQ4TDofhTbVBU3YwPZDdBFYB13zVYaR9j4/YsD30SLX+fzKxZcsEznSP0hiKAPFG+T+GwyiaDiD+Hp1WTSkU+q+Ddkohg+1JIrHvrSbjpCsUob7PnjExPKOt7r/l+ojDZiKfbjxrAty57Eb0JGQY5nk7N/ViBpqdCNetLSk5aetHRUSy8f+3GaKkYoG+IhGqMN01nWGIM5W5VC4rAJGmL3+5HAxSetPWntSWuHWusiqNCVmo53tbaeOnRaSSEZj0/JeutM0yV+F0kLicCiuR+OP42RkMI6KKhLk2Rdauu6dF1r47rknspzz42gnbyvJg0HpQ0MkjrjsgyrOKwkDdAZa8jwnFeNyjl7zWYX13P2C3e44q1HlkLuun49eT151CuZHvE4vbpkIcPAw63eMLglkT/qNhh/i2N/drKYNUa49pqmBXgWyA2aaUPFGPnRx/Pe6TkYQdR/eTuw5re/5r7w1Ndmm3PZxQOv6qDKx45NE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWbCVcyfgWFJlsLJ2lIQIpMlTWr6s/RQ9m78II+zNEZKcxlTFwbeiwS+HKZhFnukqyMG38v5B6kVRcqKQPYZPz6fuPH95MT95dnl98uL44OY0nsXtwHi5SQMXV1jrCAWzcw+3nut78sPzvrj96Sjp8cEktuVAkEl+Zdd9DbsbLEAsRpLs3I2MbuYv6VnAD6/WCW/xoZNfR668NmhbSm7tN5/CtJheWvm+uFo7W5Nmsv4V4zv4L9yuPQtq/5Kr1HVQ29AQRfMF277qpu+siKJHnaDxOweI8oHEyJz8bDwd3MF00zJhmGdbuiO3Olol61/j7cfXH9ZxaUX8BVOnc34fxFd198VVYtfZV8h3Ov1uD5GrZ8CXZBp/09ze6dCoN
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete resource
+
Deletes a deployed resource.
This can be a process definition, decision requirements definition, or form definition
deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter.
-## Request
+
-
Path Parameters
Body
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The role with the roleKey was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx
index 98e856d6575..151459fb210 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/delete-tenant.api.mdx
@@ -12,45 +12,217 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete tenant
+
-
+
Deletes an existing tenant.
-## Request
-
-
Path Parameters
-
-The tenant was deleted successfully.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx
index af00d7f00fd..e51cb374de9 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/delete-user.api.mdx
@@ -12,41 +12,176 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete user
+
-
+
Deletes a user.
-## Request
+
-
Path Parameters
+
-The user was deleted successfully.
+
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
index f41ff8627e4..c70d0a5b57f 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
@@ -5,31 +5,31 @@ description: "Evaluates a decision."
sidebar_label: "Evaluate decision"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: eJztXFtz27YS/isYPLVTmVJSJ83Rm2O756hpEo/ttNOx/QCRKxENCTC4WOZo9N/PLECKpEhJttM0bsrMZBIRwN6/XXBJYkkNm2s6vqInEHLNpSARzLjghktBbwZUZqAY/phEdEzhliWWGSgn0wGNQIeKZ27+mJ4WEzRhJComBdfiD2mJziDks5yYGNZDxEhS0iTATQyKTHNiNRdzwo0mVvBPFshHyMl3TBMFxioBEZnm1+IEskTm56ClVSF8PyBSFSsbLCYnAfk9BtE9NnAXEhTZkMhRhOha3IJyE+SsuYBrYjVEwTWqruCTBW1eyyin46X7yRVEdGyUhQENpTAgDA6xLEt46Ow4/FOjpZZUhzGkDP9n8gzomMrpnxAaOqAsSd7P6PhquWHc10wDyRS6xHDQZCYVOd3wyLmXiQ5aVKuFyLPU6GTtbXTwJsfLGMjkpGUFI8kU1o5DaxwzIaTBq2geYuQcnDMX3MSkzesN5Pd1yrUovULu5ZRCbW0UF3O6GtBbpjibJqXam+qloDWbA1lPI0yTXy7evyORDG0KwgTokihygrPkrGZG7+emoVcDakAwYbbZ0492mDVoS4/EuEmghqwNR2NM0NXNfve+gbxbnhrEeATC8FnecslnO3zS7Z2afqVehZ64RmijbOhEXQ0o3LE0K9z4Oq9kq/IV6uCQZdOUqbxmtKY203xLSFKMlsTCDgvSZ89/PHxBm2G1QkW2yDQ5ebRIk2iPRC4no0AHL17+9KotFIpVTz23IgpClloRsYBlPPgIuQ6ETaegfminpQgyBSH6uzvS+0TVJ6pvPVFxYWAOig7oTKqUGX/p5eF9NKb3gp+3YAf8erD1YPt3ge3huwJX4RToTArtVXw+GnUrtJZ6wXRNZvrV9ule6ODLYnIR8zBuq9yCQ5vJO5ZCNxvBUvgLGf3m8dvNaxu4d7Przto/Pq8LcO7v1hDK+gEGVbVlZK5YFhMTM7NXOkxHGVOGyFmnXaQ1mTVtMRo5x7Na8CQhXGjDhOHlTlKBtom5l526E+KM8QSik88PNk+IRBYpl2y7E5nnahW89em2zakYIP7qFCku4ny/tb0QnSwfmIcrmo/NyB7of09KfigM6yj4LMZfChfl2omL9xAeLiTXlQB7onEtVem8jt3BeqgAI6h6jGCh46JApCvFtcDpZs+UYjkdUG4g1V1lpsn/qFZ/nQCbvq6q0m5Cu6rU2gATA2nQl6S/pyRVAly6RZ35Kc8er+lXLzJfIvcOaMpMGEN0brdu56s0hXO8hsWqCrJ7E8XjkYpsH8y1iTkksR9lJXmc3WkrR0ZEcNdNiePQHmK7Qnntsfcu1La4o+1X4kNTP97a++k27ekH9lt0K80dCLtfonoM5d+qZmArL+HQY2h3bF7W+d+7EasAXdUnvvWhsd7kYFT5SbUYmIjtIVDdprtJu4vpF0SmY99RSR8OUEfpUfHkVnY63Y08Opr20P2MWNpGeVcouWhoR1LnluNrbZYfqNK5q4fd+rTmPOVWfN+L6HsRT2ib2Pcivv1exPYnK0++O3Ef0b9gv2IX+39+B4O8gZwwYxSfWuOfuwibguKh35XovsfxTy51fY+j73H0PY6+x9H3OPoeR9/j+Mo9jge93dQQfm/Pw91nPKk3oPoeR9/jeELbxL7H8e33OPr3Lfr3LfpexJMtSX0vou9F9L2IvhfR9yL6XkTfi/jW3rfASYfbvgbJlLzlEZqYGYZ7Yvxs5ZYlfNcXIZmS0wTSzvczmuF+5meSCAzjCfGwwEdZxX0V7sMFuTr/+Zj85/DFTzffxcZkejwcLhaLQM3CA4i4kSqQaj5UsxD/4rzvA3IZI2ZTluNHNtX3R/WNpf/Qnof4fY7xujph0NCNfcKWBogpNkNNx9Sqj1W8A+Ifzict1zdYuzUzht4ZUzaV1oynCRMfaeXNNtNNLsWHtCVWmgxWA6oNM7aekrZWz66C9r/LyzPiSZBQRuA26S4lFYxQiZQLntqUjg9HI9wM3flfL0cjt7dEj99DE0HgLkuYcKG1qQ4XJJUKivgJfArxN2R/kWek4nO+yTdowK8I4hOvUQmow331xWNpJq3osdRjqcfSViy96CpOR1jsDSiMQ1BKKiLD0CqFO6SYJ458CHr9fWzR9fCx2GOtx1qPtTbWsGcBJpZ4XEYm3XfwGTMxHdNhWbcOqiM79LC67aADqkFhC8p1+KxK6JguPYBW4+FwGUttVuNlJpVZDW+fb5zBQXHYA60MoESGLIm9EG1H4kD9LuPYPywjr8j56cUl+S8zsGC5MyyybJJ+NXo16qSKU7dQPDqbEK+hD8NaaijJIsY7yfrJ9yG8wnsLDaFV3OQXuMybZwpMgTqy6It1eBT8HHX87SfRQfGfn8ug+eX3S+d3TGvn1VFMp/6cmB33L/XY7mqsVuON81Tq7bTGvd1MOumL8GvbAQmVHU46Cp61Q/1s4hAbyjS1wqVtfPCCH82zml3DxGqD9hzQhIeAD1jHSyrc7eqa7a9+hBQ9VfIswJjwgVtm6zk3sZ0GoUyHxdPY9b/TRE6HKeNiWLDQw+Ojtx/enRwd/Do5Pn13cXrwLBgF5s6/0o5oSpmoybE+36a07aa2y6pM/buOCyvC28CdGWYJ4+5UI+eYZZGOrmhXOqLrFg/3Z7L5pHJFl8sp0/BBJasVXv5kAU8Yurqp4hZ/rQY0BhaBchnMHZFEj70HDlzfe33EUPv4g9WgXHEUhpCZnXNvaln27P3FJSK2OBotlRGuUWyBx6axBR1TimfLmfKZj7u2pAkTc+seTFJPE//8H0q29Zc=
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Evaluate decision
+
Evaluates a decision.
@@ -37,46 +37,896 @@ You specify the decision to evaluate either by using its unique key (as returned
DeployResource), or using the decision ID. When using the decision ID, the latest deployed
version of the decision is used.
-## Request
+
-
Body
required
variables object
+
-The message variables as JSON document.
+
-
Body
required
variables object
-
-The message variables as JSON document.
-
-
Body
required
variables object
-
-The message variables as JSON document.
-
-
-
-The decision was evaluated.
-
-
Schema
evaluatedDecisions object[]
-
-Decisions that were evaluated within the requested decision evaluation.
-
-
Array [
]
Schema
evaluatedDecisions object[]
-
-Decisions that were evaluated within the requested decision evaluation.
-
-
Array [
]
Schema
evaluatedDecisions object[]
-
-Decisions that were evaluated within the requested decision evaluation.
-
-
Array [
]
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The decision is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
index 9c448077873..bcd3535ff21 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
@@ -5,59 +5,265 @@ description: "Mark the job as failed"
sidebar_label: "Fail job"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtz2zYQ/is7uDSZMpLSum3Km+smrdMm8dhOe3B8WJJLETYIsABomaPhf+8sQOptN4ce5RmNSWKxz+9bErsUHudOpDfivcnEbSJMQxa9NPq8EKkoUSpeSERBLrey4RWRig9o78FXBHcmA3TAclR80SIRDVqsyZNlrUuhsSaRijuT/UGdSITk7Q36SiTC0j+ttFSI1NuWdm1cVwT31IEpV5a8CZYmIhEur6hGkS6F7xq24LyVei76/jYqJud/MUXHEms7JSpHiciN9qQ9r2HTKJmHiKd3jg0v93Wb7I5yz8FZzo+X5KJeb4fLfdexNq327P0gtorCVaZVBVT4QKCo9CFtgyWpPc3JikSUxtbo46PvvwsVKLFVXqSzPhFkrbEfyDmc0779Uw0mXKOCOgpBlMiknsOi6lbOxMpN4LqSDqSDBq2XeavQqg5aR2WrQJaAQdi22oFpt6JCXQBqkDqXBWnPOixKR0XCwPCsdnQhRw0VqQbosVEodXBkc+8Cx82TzaQMpU2EbpXCTFEETJ+ECnS/YH7/qSwPlyHD/N6UJXhZE3v+Qmqo3UsojQ050PToQyzd5L/r8OPJbh0e0Er2KIAAi0LGrF9s4OQQtt9fffoIEVXgK/SwkEqB1M6j9hI9Bd9WygF9eKBMjgpcbhraoMU3DtA5k/O+Ajy6+61QVuDdyV6fCC893zL336FUl5E2ou/7kFvXGO1iaN/NTg7nl2EhxwYwEX0iTmazw6KNNQ+yoAIK9MibtPHwgEoO1X6ClY01maL623127oAeLqIkFORRqjG/6EbsUwFSw83luzP4+eSHn25fVN43Lp1OF4vFxJb5KyqkN3Zi7Hxqy5x/LPeS2UGWoMYOMoJ1mWHdD8A1lMtS5tykfIw2OMNVOFyP7WYSV3fb2Qb+Wiv3+vApfL48h0AeWXbM7T3Tm4gVmJnWp5lCfS/W9d83umvFtXWNdtWLtw30iXAefbsRxvN9bBcYv19fX0BUAbkpaCAnd6NoiIOopZZ1W4v0ZDZLRI2P8e7HGdMwVvwrItGx9+gArd1wuDUYSwN+QmCRkvn/VRlj5Vzu2p2ITS4OIP41RhSpePIc+xbSV0HdXD6QhvimHelVmlYf6XWk15Fez9Lr56+m133kltTh2cIaPQ+5Jchba0l71U3gwzpMB2g3Xn3DvvHdCpkpuiM9j/Q80vNpev5w6IPylI8NnizjMByGwOSBgQUsKqmC+pycG20PR8Ij145cO3LtKa71iajJV4ZHP41xATo8qknF9M5kbrqMH5f9lI97rSWew5B9GGc9rVUiFctImz6dTpeVcb5Pl42xvp8+cE22Dsy8HOk1wiaccKtoer98vMADpTGsM6xbXSC8gcu3V9fwG3paYBfSySa3Vb+ZvZkd1MqiT2g8vTiHGGEE30ZDGNUysw+qjcJfozjMrBzlrZW+u+JtMT0ZoSV72nIFVqAY7AXtfB+FRDJcvBuh8v7v61BtbmaX63nY20esm0jF1fhqtjtPWiNve8Ay265fH2BbmuDdAKr9OLnoZF1MzGzyeh/AF+eBh7mp61aHZsxDKv7uwo285ap1nvOVCCVz0i4EMcwXR7E/4wr8FS3C6wnXPAJz7MFz6as2m+SmnuZx2+p/pkw2rVHq6WDCTc9OP3z++Ovpqz/Pz95+vHr76vVkNvGPPuSWOVKj3vCDxyj82bgb5HL9znlueDrU2NOjn4YRGaMueL8cmHjDo1QnEpGuRqojGW+TgVA3YrnM0NFnq/qeH//Tku1EenO7rl8gbCEdX68Ho0/6/OJymKG+hOfnsgcjGB6i7kIHUC3fiUTcU7eeDfe3fSIqwoJscC4unkUXXl2zivXmvbFtn4w7TvOcGv+E7NYrnmm36ncXn66umUXDzLg2Be+1uGAW4EKk4ov4wk7HyWocAPPzpVCo520kTtTLf/8CiT0LjQ==
+api: eJztWEtz2zYQ/is7uDSZ0pKSOmmim+MkrdM8PLbTHlwfluRShA0CLABa5mj43zsLkHrbzaFHeUZjkljs8/uWxC6Ex5kT02vxyaTiJhGmJoteGn2Wi6koUCpeSEROLrOy5hUxFV/Q3oEvCW5NCuiA5Sj/W4tE1GixIk+WtS6ExorEVNya9A9qRSIkb6/RlyIRlv5ppKVcTL1taNvGVUlwRy2YYmnJm2BpJBLhspIqFNOF8G3NFpy3Us9E191ExeT8O5O3LLGyU6BylIjMaE/a8xrWtZJZiHh869jwYle3SW8p8xyc5fx4SS7q9ba/3HUdK9Noz973YssoXGkalUOJ9wSKCh/S1luS2tOMrEhEYWyFPj765WWoQIGN8mI66RJB1hr7hZzDGe3aP9FgwjUqqKIQRIlU6hnMy3bpTKzcCK5K6UA6qNF6mTUKrWqhcVQ0CmQBGIRtox2YZiMq1DmgBqkzmZP2rMOidJQnDAzPagcXMtRQkqqBHmqFUgdH1vfOcdg8Wk9KX9pE6EYpTBVFwHRJqED7DrO7b0WxvwwpZnemKMDLitjzZ1JD5Z5DYWzIgaYHH2JpR/9dh9fH23W4RyvZowACzHMZs36+hpN92P50+e0rRFSBL9HDXCoFUjuP2kv0FHxbKgf04YEyGSpwmalpjRY/OUDnTMb7cvDo7jZCWYJ3K3tdIrz0fMvc/4hSXUTaiK7rQm5dbbSLob2cHO/PL8NCDg1gJLpEHE8m+0Vra+5lTjnk6JE3aePhHpXsq/0IK2trUkXVz7vs3AI9nEdJyMmjVEN+0Q3YpxykhuuLj6fw9vjVrzfPSu9rNx2P5/P5yBbZEeXSGzsydja2RcY/lnvO7CBLUGELKcGqzLDqB+BqymQhM25SPkYbnOEq7K/HZjOJq9vtbA1/jZU7ffgEvl+cQSCPLFrm9o7pdcQKTE3jp6lCfSdW9d81um3FNVWFdtmLNw10iXAefbMWxtN9bBsYv19dnUNUAZnJqScnd6NoiIOopJZVU4np8WSSiAof4t3rCdMwVvwHItGx9+gAre1wuDUYSz1+QmCRktn/VRlj5Uxu2x2JdS72IH4fI4pUPH6KfXPpy6BuJu9JQ3zTDvQqTKMP9DrQ60CvJ+n19ofpdRe5JXV4NrdGz0JuCbLGWtJetSP4sgrTAdq1V1+/b3i3Qmry9kDPAz0P9Hycnq/2fVCe8LHBk2UchsMQmCwwMId5KVVQn5Fzg+3+SHjg2oFrB649xrUuERX50vDopzYuQIdHNVMxvjWpGy/ix2U35uNeY4nnMGTvh1lPY5WYikWkTTcdjxelcb6bLmpjfTe+55psHJh5OdJrgE044ZbR9G75eIEHSkNYp1g1Okd4AxcfLq/gN/Q0xzakk01uqn4zeTPZq5VFH9F4cn4GMcIIvrWGMKhlZu9VG4V/RHGYWTnKGit9e8nbYnpSQkv2pOEKLEHR2wva+T4KiaS/+DhA5dNfV6Ha3MwuVvOwDw9Y1ZGKy/HVZHuetELe5oBlslm/LsC2MMG7HlS7cXLRybqYmMnoxS6Az88CDzNTVY0OzZiHVPzdhWt5y1TjPOcrEUpmpF0Iop8vDmKf4wr8GS3CixHXPAJz6MEz6csmHWWmGmdx2/J/qkw6rlDqcW/CjU9Pvnz/+v7k6PPZ6Yevlx+OXowmI//gQ26ZIxXqNT94jMKfjdtBLlbvnKeGp32NPT34cRiRMeqC94ueidc8SnUiEdPlSHUg403SE+paLBYpOvpuVdfx438asq2YXt+s6hcIm0vH16vB6KM+P7voZ6jP4em57N4I+oeo29ABVMN3IhF31K5mw91Nl4iSMCcbnIuLp9GFoytWsdq8M7btkmHHSZZR7R+R3XjFM+2W/e782+UVs6ifGVcm570W58wCnEeH41Q1Dn/52UIo1LMmkibq5L9/AW4NCpE=
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Fail job
+
Mark the job as failed
-## Request
+
-
Path Parameters
Body
variables objectnullable
+
-JSON object that will instantiate the variables at the local scope of the job's associated task.
+
-
-
-The job is failed.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx
index a06fc7b72f6..117f0921700 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx
@@ -5,115 +5,1121 @@ description: "Search for authorizations based on given criteria."
sidebar_label: "Query authorizations"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query authorizations
+
Search for authorizations based on given criteria.
-## Request
+
-
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx
index 3df6265b387..554f0c94c54 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx
@@ -5,232 +5,1718 @@ description: "Search for process and local variables based on given criteria."
sidebar_label: "Query variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query variables
+
-
+
Search for process and local variables based on given criteria.
-## Request
-
-
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The decision requirements with the given key was not found. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx
index fd4cbc42a3b..08efcad71dd 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/get-document.api.mdx
@@ -12,24 +12,24 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Download document (alpha)
+
Download a document from the Camunda 8 cluster.
@@ -41,22 +41,136 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
-
-
Path Parameters
Query Parameters
-
-The document was downloaded successfully.
-
-
Schema
-
-string
-
-
-
-The document with the given ID was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx
index a2f888ee8ed..f8eda8f22ac 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx
@@ -12,52 +12,594 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The role with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx
index f621e65d404..61891f6a16e 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/get-start-process-form.api.mdx
@@ -12,58 +12,369 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process start form
+
Get the start form of a process.
Note that this endpoint will only return linked forms. This endpoint does not support embedded forms.
-## Request
+
-
Path Parameters
+
-The form is successfully returned.
+
-
Schema
Schema
Schema
-
-The process was found, but no form is associated with it.
-
-
-
-Bad request
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
index 4f7cd2e94fd..3bfc5314c06 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
@@ -5,31 +5,31 @@ description: "Migrates a process instance to a new process definition."
sidebar_label: "Migrate process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Migrate process instance
+
Migrates a process instance to a new process definition.
@@ -40,34 +40,319 @@ Use this to upgrade a process instance to a new version of a process or to
a different process definition, e.g. to keep your running instances up-to-date with the
latest process improvements.
-## Request
+
-
Path Parameters
Body
required
mappingInstructions object[]
+
-Element mappings from the source process instance to the target process instance.
+ 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "MigrateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ targetProcessDefinitionKey: {
+ description:
+ "The key of process definition to migrate the process instance to.",
+ type: "string",
+ },
+ },
+ required: ["targetProcessDefinitionKey", "mappingInstructions"],
+ title: "ProcessInstanceMigrationInstruction",
+ },
+ },
+ "application/vnd.camunda.api.keys.number+json": {
+ schema: {
+ deprecated: true,
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for MigrateProcessInstanceRequest",
+ type: "object",
+ properties: {
+ mappingInstructions: {
+ description:
+ "Element mappings from the source process instance to the target process instance.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "The mapping instructions describe how to map elements from the source process definition to the target process definition.\n",
+ properties: {
+ sourceElementId: {
+ description: "The element ID to migrate from.",
+ type: "string",
+ },
+ targetElementId: {
+ description: "The element ID to migrate into.",
+ type: "string",
+ },
+ },
+ required: ["sourceElementId", "targetElementId"],
+ title: "MigrateProcessInstanceMappingInstruction",
+ },
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "MigrateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ targetProcessDefinitionKey: {
+ description:
+ "The key of process definition to migrate the process instance to.",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ required: ["targetProcessDefinitionKey", "mappingInstructions"],
+ title: "MigrateProcessInstanceRequest",
+ },
+ },
+ "application/vnd.camunda.api.keys.string+json": {
+ schema: {
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for MigrateProcessInstanceRequest",
+ type: "object",
+ properties: {
+ mappingInstructions: {
+ description:
+ "Element mappings from the source process instance to the target process instance.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "The mapping instructions describe how to map elements from the source process definition to the target process definition.\n",
+ properties: {
+ sourceElementId: {
+ description: "The element ID to migrate from.",
+ type: "string",
+ },
+ targetElementId: {
+ description: "The element ID to migrate into.",
+ type: "string",
+ },
+ },
+ required: ["sourceElementId", "targetElementId"],
+ title: "MigrateProcessInstanceMappingInstruction",
+ },
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "MigrateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ targetProcessDefinitionKey: {
+ description:
+ "The key of process definition to migrate the process instance to.",
+ type: "string",
+ },
+ },
+ required: ["targetProcessDefinitionKey", "mappingInstructions"],
+ title: "ProcessInstanceMigrationInstruction",
+ },
+ },
+ },
+ }}
+>
-
Array [
]
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
Body
required
mappingInstructions object[]
-
-Element mappings from the source process instance to the target process instance.
-
-
Array [
]
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
Body
required
mappingInstructions object[]
-
-Element mappings from the source process instance to the target process instance.
-
-
Array [
]
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
-
-The process instance is migrated.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
index 9579a9e7deb..237980ab303 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
@@ -5,31 +5,31 @@ description: "Modifies a running process instance."
sidebar_label: "Modify process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: eJztW1tz47YV/isYvDSZUpScOulGD51RvN5WyV48tjZ5kPwAkUciYhBgAFCyRsP/3jkAKVEkZXu7m6Tt0DMeWyRwrt93cAiBe2rZ2tDxnN5oFYExhEtjmYyA3gdUZaCZ5UpOYzqmqYr5aleOm1bDAhqDiTTPcBwd03c4ioMhjOhcSi7XJGuIDhdylnBDNPyWg7EkYpJESlrGJUlzYXkmwA3WeYRSDbGKsMjyDbNAmCQgIAVpiVoRm8BBvtILaRWxoFMuy6FuGhxU45SjgHAhF/KjAWLRHKuIhoxxTVjLZGITZgk3xNg8eiBKnpihiVXqAS/lkksLMoaYZMwm4UK+UZrAI0szAQFZQsRy4314tKAlE8TsjIUUZUtlCdswLthSAEqNFRj5F0s0mEzJmDBD4DGDyEIcLiQNaMY0S8GCxhTuqWQp0DHNTlP0E+xoQDkmB22iAcXAcw0xHVudQzODswTIA+ya0T0NhUlULmKyBJL6hMchDaiJEkgZHe+p3WVoirGayzUtinuvFYz9QcU7HNE0AhEA0uItlmWCRw55w18NGrVvi1bLXyGyNKBMiA8r5/+pHz8w46zPQFsE5Epp8q4Lw7feMBq0RB9no+IDHW5hBRoQ/eOm0gnR1U0XxChRBiRZ7lwscwPax2/LhcDoZUw7HDMhiIZI6Rh5YZAFck1WWqUenAfdIXmXG4tT/0FGhK/Qww2PK0SUHiAK16BpQFdKp8z6S99d0oCmXPI0T+n4oigCarkVUNH2TGAwkBQzeBqOipHTGlPbAanfJf7WEl3bJjxKKgqZGp4qsTHhshxlIpVhRZFxeWHDNEeS1OdFGnBWeAwC05o56FtIP8GyGrMbUD+YFi7kT7AjzFrNl7lF27A0INbJhokcTNiBps8G6qQd8WdBW7qCFbypF4k+fV3x/Fmfj6oqVge0SsTnYOA/TGbT7S+o8jSCh8Ftx368+/CexCrKj5FzxPa10nJchDC2R32YW7yilbKHyx7g5wpuuJBTS9KS9Yw4pd7tAHF3FF4VlZRlmecPwyI0cJAkK2YSLCCuTrA45ugEEzc1Z30lPo1sgWVdZfByBJ3ythGAdsAX8i2wDRBIM7vDVdjfaMzj0l1YC7XERfOpgNULYQlVhMeK5QILIcW6d1x95rUE3z9TEH9uw50Wz5bRDtqeK6kyAmOVvi5JW1vBO2NfW6arqbWgH/NRrtyt2BOOcLgDi2EfXDSCL2HblrHlNuG+/Xnkxq1SrTHepIVcCbX19oRP52Rw0czJsWzVctKIq281fZ/QVRpdYqpm8AuvUge5v1uNelopecH6070QPIepZ1eETtcPjV53GmtKX5bPWUfeTqn2xOQmCOr95EbGYcTSXMYsZBkPH2BnQpmnS9B/bfeaMWQaIvS1uzj23Wffff4Z3aerJb87NPt+s+83+36z7zf/x/vNJ5ajT+1AX1wm/597zz+4tTybvk9rNjtT93yb+WTP9qLm0peEjuaybyX7VvLPbyX7jcy+sewby76x7BvLfiOz38j8b97I9DbhUQDjI/HN6LLb9dZ39tzUvqcvAno5Gp2d6ZowEjPLqkMJGya4i9GZ7+gzrZYC0s7909Oe8saPJDFYxkVZ/DHnJWp8sZ/fvrki319++/f7rxJrMzMeDrfbbahX0QBibpUOlV4P9SrCXxz3dUhmCWhcMHZubTksCvV2xGQQYWixOpTl1hmDmT/h9ZkOxN9tnm2odaa55i1uTMjH2ynhMUjLVzvEdUv1SVFnS5Xb8VIw+UCPIGkrbWoxeZoyXT+1UVOAS59lNq9zubuz/ts3LdkIi3/NZjfEiyCRiqFc/rmpFIX1hvxyNApoyh79p+9GowJlYsZf4AnW40ww6aDVdAdPCCkNJX6cY4cDS18mM0rzNW/qDWmDsHjxtffI8/LyU6iInFqpXPac6jnVc+osp77tWqQmkmCU3dE50FppoqIo1xrcI7U4EK7SXZ4681jsudZzredam2tFQFOwicJjvplyO4juqOiYDks6DSozzXDfPl9aDNNa14oHQUFvqlOpuRZ0TPeeVMV4ONwnythivM+UtsVwgxk72ZrA2558FaiEiphIvGHt5OINPPpaOX3ld2DJK3J7fTcj/2QWtmzngo0qT0W/Gr0adUrFoWckTm6mxHvooVkrF5VY5H2nWD/4JYLdoVkDUa653d3hNB+eJTANepJjfg6QKfU56fjZD6JB+c+bCkg//jJzWMBSd3s8kHvtTyif3w2dP/1MP7gI6ht0RwR376vNTzej6jszhwewe3T/zFPvvPsp8Dg36NzjHjm6rZSLW0mGdgbQatDGp2wUXrSJdzN19SNSaZpLB3p82OU2IayW0UjkxmImAyp4BNK48JZntKthb/0d8rPXSC5CRKOnTLV2rLlN8mUYqXRYfrlw+LsUajlMGZfDUoUZXk3efXz/ejJ4O726fn93PbgIR6F99N9VILdTJmt2+H2eVpfa9Hl/XDr7E/5/5An/kt4WHu0wE4xLLDgOHvuyRM9pq0TTgI47XwI4qdL3QVlp53S/XzIDH7UoCrz8Ww56R8fz+yN//W4/N/h/TMcrJkzzxYE6Rr66LfdOviaf8TpBp/PVFpXcufIicvxEA/rgKkCH28V9EdAEWAzaeeEHXnlbBzMUdxTUevWgCKoZkyiCzJ4Ze9JCYv05rKc3H+5mWIfL1x5SFeNczbb4IgbbeuNVdtjPc9f2VDC5ztkax3qZ+PNvwHN3iA==
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Modify process instance
+
Modifies a running process instance.
@@ -39,46 +39,477 @@ to terminate an active instance of an element.
Use this to repair a process instance that is stuck on an element or took an unintended path.
For example, because an external system is not available or doesn't respond as expected.
-## Request
+
-
Path Parameters
Body
required
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>activateInstructions object[]
+
-Instructions describing which elements should be activated in which scopes and which variables should be created.
+ 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "ModifyProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ activateInstructions: {
+ description:
+ "Instructions describing which elements should be activated in which scopes and which variables should be created.",
+ type: "array",
+ items: {
+ description:
+ "Instructions describing an element that should be activated.\nKey attributes as string values.",
+ type: "object",
+ allOf: [
+ {
+ description:
+ "Base properties for ModifyProcessInstanceActivateInstruction",
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ "The ID of the element that should be activated.",
+ type: "string",
+ },
+ variableInstructions: {
+ description:
+ "Instructions describing which variables should be created.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which variables should be created.",
+ properties: {
+ variables: {
+ description:
+ "JSON document that will instantiate the variables for the root variable scope of the process instance.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n",
+ additionalProperties: true,
+ type: "object",
+ },
+ scopeId: {
+ description:
+ "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n",
+ type: "string",
+ default: "",
+ },
+ },
+ required: ["variables"],
+ title: "ModifyProcessInstanceVariableInstruction",
+ },
+ },
+ },
+ title: "ModifyProcessInstanceActivateInstructionBase",
+ },
+ ],
+ properties: {
+ ancestorElementInstanceKey: {
+ description:
+ "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n",
+ type: "string",
+ default: -1,
+ },
+ },
+ required: ["elementId"],
+ title: "ProcessInstanceModificationActivateInstruction",
+ },
+ },
+ terminateInstructions: {
+ description:
+ "Instructions describing which elements should be terminated.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which elements should be terminated. Key attributes as string values.",
+ properties: {
+ elementInstanceKey: {
+ description:
+ "The ID of the element that should be terminated.",
+ type: "string",
+ },
+ },
+ required: ["elementInstanceKey"],
+ title: "ProcessInstanceModificationTerminateInstruction",
+ },
+ },
+ },
+ title: "ProcessInstanceModificationInstruction",
+ },
+ },
+ "application/vnd.camunda.api.keys.number+json": {
+ schema: {
+ deprecated: true,
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for ModifyProcessInstanceRequest",
+ type: "object",
+ properties: {
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "ModifyProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ activateInstructions: {
+ description:
+ "Instructions describing which elements should be activated in which scopes and which variables should be created.",
+ type: "array",
+ items: {
+ description:
+ "Instructions describing an element that should be activated.\n",
+ deprecated: true,
+ type: "object",
+ allOf: [
+ {
+ description:
+ "Base properties for ModifyProcessInstanceActivateInstruction",
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ "The ID of the element that should be activated.",
+ type: "string",
+ },
+ variableInstructions: {
+ description:
+ "Instructions describing which variables should be created.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which variables should be created.",
+ properties: {
+ variables: {
+ description:
+ "JSON document that will instantiate the variables for the root variable scope of the process instance.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n",
+ additionalProperties: true,
+ type: "object",
+ },
+ scopeId: {
+ description:
+ "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n",
+ type: "string",
+ default: "",
+ },
+ },
+ required: ["variables"],
+ title: "ModifyProcessInstanceVariableInstruction",
+ },
+ },
+ },
+ title: "ModifyProcessInstanceActivateInstructionBase",
+ },
+ ],
+ properties: {
+ ancestorElementInstanceKey: {
+ description:
+ "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n",
+ type: "integer",
+ format: "int64",
+ default: -1,
+ },
+ },
+ required: ["elementId"],
+ title: "ModifyProcessInstanceActivateInstruction",
+ },
+ },
+ terminateInstructions: {
+ description:
+ "Instructions describing which elements should be terminated.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which elements should be terminated.",
+ properties: {
+ elementInstanceKey: {
+ description:
+ "The ID of the element that should be terminated.",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ required: ["elementInstanceKey"],
+ title: "ModifyProcessInstanceTerminateInstruction",
+ },
+ },
+ },
+ title: "ModifyProcessInstanceRequest",
+ },
+ },
+ "application/vnd.camunda.api.keys.string+json": {
+ schema: {
+ type: "object",
+ allOf: [
+ {
+ description: "Base properties for ModifyProcessInstanceRequest",
+ type: "object",
+ properties: {
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "ModifyProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ activateInstructions: {
+ description:
+ "Instructions describing which elements should be activated in which scopes and which variables should be created.",
+ type: "array",
+ items: {
+ description:
+ "Instructions describing an element that should be activated.\nKey attributes as string values.",
+ type: "object",
+ allOf: [
+ {
+ description:
+ "Base properties for ModifyProcessInstanceActivateInstruction",
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ "The ID of the element that should be activated.",
+ type: "string",
+ },
+ variableInstructions: {
+ description:
+ "Instructions describing which variables should be created.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which variables should be created.",
+ properties: {
+ variables: {
+ description:
+ "JSON document that will instantiate the variables for the root variable scope of the process instance.\nIt must be a JSON object, as variables will be mapped in a key-value fashion.\n",
+ additionalProperties: true,
+ type: "object",
+ },
+ scopeId: {
+ description:
+ "The ID of the element in which scope the variables should be created.\nLeave empty to create the variables in the global scope of the process instance\n",
+ type: "string",
+ default: "",
+ },
+ },
+ required: ["variables"],
+ title: "ModifyProcessInstanceVariableInstruction",
+ },
+ },
+ },
+ title: "ModifyProcessInstanceActivateInstructionBase",
+ },
+ ],
+ properties: {
+ ancestorElementInstanceKey: {
+ description:
+ "The key of the ancestor scope the element instance should be created in.\nSet to -1 to create the new element instance within an existing element instance of the\nflow scope.\n",
+ type: "string",
+ default: -1,
+ },
+ },
+ required: ["elementId"],
+ title: "ProcessInstanceModificationActivateInstruction",
+ },
+ },
+ terminateInstructions: {
+ description:
+ "Instructions describing which elements should be terminated.",
+ type: "array",
+ items: {
+ type: "object",
+ description:
+ "Instructions describing which elements should be terminated. Key attributes as string values.",
+ properties: {
+ elementInstanceKey: {
+ description:
+ "The ID of the element that should be terminated.",
+ type: "string",
+ },
+ },
+ required: ["elementInstanceKey"],
+ title: "ProcessInstanceModificationTerminateInstruction",
+ },
+ },
+ },
+ title: "ProcessInstanceModificationInstruction",
+ },
+ },
+ },
+ }}
+>
-
Array [
]
terminateInstructions object[]
-
-Instructions describing which elements should be terminated.
-
-
Array [
]
Body
required
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>activateInstructions object[]
-
-Instructions describing which elements should be activated in which scopes and which variables should be created.
-
-
Array [
]
terminateInstructions object[]
-
-Instructions describing which elements should be terminated.
-
-
Array [
]
Body
required
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>activateInstructions object[]
-
-Instructions describing which elements should be activated in which scopes and which variables should be created.
-
-
Array [
]
terminateInstructions object[]
-
-Instructions describing which elements should be terminated.
-
-
Array [
]
-
-The process instance is modified.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx
index ff19081ac91..43facd320a8 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/pin-clock.api.mdx
@@ -5,29 +5,32 @@ description: "Set a precise, static time for the Zeebe engine’s internal clock
sidebar_label: "Pin internal clock (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA8D9pIASUzyeP9+vzsfN8Lj0ol8Kk4rI7+Im0SYhix6ZfR5IXLRKB1PElGQk1Y1fCRycUUeEBpLUjlKwHn0SoJXNcHCWPAlwR9EcwLSS6Xp7z//cqC0J6uxAskq05n+VJIOomEDlINGaU1FAsqDpRqVdoA+iLiGpFooKqIR1AUUhhxo4wGLW9SS0pmeGJAl6iWFOyyZ7BioW+dhTr0VwCUqDSvlS0DQtAryzmPdpDM903mea+NppielckC6aIzSnr1EDVOsmhJhQehbSzcvMmnqxmjS3mWEtlofoZTkXBbk4t+jXtqldfEyRFDjmv1x7fwzSQ9+8H6mlYZFy8JgqSJ05NLg0UyLRFj62pLzP5liLfJNWCpLhci9bSkR0mhP2vMRNk2lZMAz++wYuY1wsqQa+ZNfNyRyYYJ1kYjGMvpekQunQzZ48RD9SUlAd8guMxhKAzVGllCrqlKOpNGF42hWpZLlDgCuNG1VbCFIRTI4weRYkhWJWBhbo49bb49F1yU7EU533LpJhFe+4tuBpBdKX8bMiK6L11xjtIvhvB4dHw4kurZCB64NmC3aqloPJPHmEP0ORpzOtOgScTwaHTY0RLHlGTRosSZPlmlVK+eUXoKxzH/lQNMSvbolTtMToDbWzCuqv9sH96H9MVxESSjIo6oggg7oIArOqeCoppfvT+HH4zc/3LwovW9cnmWr1Sq1C3lEhfLGpsYuM7uQ/MtyL1OYlGRp4DIWhWKbWMGWTkP65JDO3m1g8NPA6X/hYji9Z6zzVunlLldaq/Z61BiuL89BFaS9Wqw5s3umw50FthXrwLlpfT6vUH9hHHtu7Rt9bMW1dY12DWZxwECXCG6O7U4YT3D9+9d7upk1v0wmFxBVgDTF0F+5WUZDHESttKrbWuTHo1EiaryLq7ejUcc6GfFviEQD3TUV6kCtx+EoDbWx1PMnBKa089x4/yNkjFVL9dhuGhrAUOc9id/FiGKVvzlUb2O9/boha40FI2VrufpWpaqCeq71wXbfUiMXn2vtudaea22/1rpE1ORLEybDNjAHfSlykcl+SHRkb8nyRLkRra1ELjaxSro8yzalcb7LN42xvstuGYJbtArnVSQeH8dqGlhSGYlV2D6EFh9orGmI4hTrVhcIJ3B5djWBn9HTCtche2zyoeqT0cnooFYWfULj+OIcYoSRazv1P6jlQj6oNgp/i+Kuu+FEytYqv77iazE9c0JLdtxyxu850NsL2nkdhUTSf3g/MOPXT5MALveuy+34eHaHddNX3nbcGwW+LUzc7iesPY8ZPrIuhjhKX+0z7+I8FJA0dd3q0EX1cpi3t/pk1TrPkSeiUpK0C+4wsDtmP8QT+D1ahFcpoxcpNjTPpfJlO0+lqTMZr93/n1dmnvF7IutNuOx0/Nv1x3fjow/np2cfr86OXqWj1N/5kKXGOF+j3vHjQulH7xd4EYb6l4/D3my/Pp5fSf/nK6mvEE93PmsqVGE4D4zZ9H1rKuTw7I29Zyo2mzk6urZV1/H215bsWuTTm22r4lWXiJKwIBsa3RdaM1Mj6kcTNsviVcvm915gXTLcGEtJjX9C9sGwwR3hvvNeXE+4vvvHX20KvmpxxQ9DXIlczMRMCH7Js6LQOsL+RlSoly0uWT6q5Z9/AGWmkiU=
+api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA8D9pIASUzyeP9+vzsfN8Lj0ol8Kk4rI7+Im0SYhix6ZfR5IXLRKB1PElGQk1Y1fCRycUUeEBpLUjlKwHn0SoJXNcHCWPAlwR9EcwLSS6Xp7z//cqC0J6uxAskq05n+VJIOomEDlINGaU1FAsqDpRqVdoA+iLiGpFooKqIR1AUUhhxo4wGLW9SS0pmeGJAl6iWFOyyZ7BioW+dhTr0VwCUqDSvlS0DQtAryzmPdpDM903mea+NppielckC6aIzSnr1EDVOsmhJhQehbSzcvMmnqxmjS3mWEtlofoZTkXBbk4t+jXtqldfEyRFDjmv1x7fwzSQ9+8H6mlYZFy8JgqSJ05NLg0UyLRFj62pLzP5liLfJNWCpLhci9bSkR0mhP2vMRNk2lZMAz++wYuY1wsqQa+ZNfNyRyYYJ1kYjGMvpekQunQzZ48RD9SUlAd8guMxhKAzVGllCrqlKOpNGF42hWpZLlDgCuNG1VbCFIRTI4weRYkhWJWBhbo49bb49F1yU7EU533LpJhFe+4tuBpBdKX8bMiK6L11xjtIvhvB4dHw4kurZCB64NmC3aqloPJPHmEP0ORpzOtOgScTwaHTY0RLHlGTRosSZPlmlVK+eUXoKxzH/lQNMSvbolTtMToDbWzCuqv9sH96H9MVxESSjIo6oggg7oIArOqeCoppfvT+HH4zc/3LwovW9cnmWr1Sq1C3lEhfLGpsYuM7uQ/MtyL1OYlGRp4DIWhWKbWMGWTkP65JDO3m1g8NPA6X/hYji9Z6zzVunlLldaq/Z61BiuL89BFaS9Wqw5s3umw50FthXrwLlpfT6vUH9hHHtu7Rt9bMW1dY12DWZxwECXCG6O7U4YT3D9+9d7upk1v0wmFxBVgDTF0F+5WUZDHESttKrbWuTHo1EiaryLq7ejUcc6GfFviEQD3TUV6kCtx+EoDbWx1PMnBKa089x4/yNkjFVL9dhuGhrAUOc9id/FiGKVvzlUb2O9/boha40FI2VrufpWpaqCeq71wXbfUiMXn2vtudaea22/1rpE1ORLEybDNjAHfSlykcl+SHRkb8nyRLkRra1ELjaxSro8yzalcb7LN42xvstuGYJbtArnVSQeH8dqGlhSGYlV2D6EFh9orGmI4hTrVhcIJ3B5djWBn9HTCtche2zyoeqT0cnooFYWfULj+OIcYoSRazv1P6jlQj6oNgp/i+Kuu+FEytYqv77iazE9c0JLdtxyxu850NsL2nkdhUTSf3g/MOPXT5MALveuy+34eHaHddNX3nbcGwW+LUzc7iesPY8ZPrIuhjhKX+0z7+I8FJA0dd3q0EX1cpi3t/pk1TrPkSeiUpK0C+4wsDtmP8QT+D1ahFcpoxcpNjTPpfJlO0+lqTMZr93/n1dmnvF7IutNuOx0/Nv1x3fjow/np2cfr86OXqWj1N/5kKXGOF+j3vHjQulH7xd4EYb6l4/D3my/Pp5fSf/nK6mvEE93PmsqVGE4D4zZ9H1rKuTw7I29Zyo2mzk6urZV1/H215bsWuTTm22r4lWXiJKwIBsa3RdaM1Mj6kcTNsviVcvm915gXTLcGEtJjX9C9sGwwR3hvvNeXE+4vvvHX20KvmpxxQ9DXIlcCH7Fs5LQNsLeRlSoly0uWTaq5J9/AC/4kSk=
sidebar_class_name: "put api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Pin internal clock (alpha)
+
-
+
Set a precise, static time for the Zeebe engine’s internal clock.
When the clock is pinned, it remains at the specified time and does not advance.
@@ -38,18 +41,129 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
+
-
Body
required
+
-The clock was successfully pinned to the specified time in epoch milliseconds.
+
-
-
-The required timestamp parameter is missing or it is negative.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx
index af74c11caac..906fe1d3819 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/publish-message.api.mdx
@@ -5,29 +5,32 @@ description: "Publishes a single message."
sidebar_label: "Publish message"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Publish message
+
-
+
Publishes a single message.
Messages are published to specific partitions computed from their correlation keys.
@@ -35,22 +38,234 @@ Messages can be buffered.
The endpoint does not wait for a correlation result.
Use the message correlation endpoint for such use cases.
-## Request
+
-
Body
required
variables objectnullable
+
-The message variables as JSON document.
+
-
-
-The message was published.
-
-
Schema
Schema
Schema
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx
index dbf265cd5ff..12428752629 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx
@@ -12,48 +12,226 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Remove a group from a tenant
+
Removes a single group from a specified tenant without deleting the group.
-## Request
-
-
Path Parameters
-
-The group was successfully removed from the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or group was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx
index 143b5edbefa..47d0b2e948b 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx
@@ -12,48 +12,226 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Remove a mapping rule from a tenant
+
Removes a single mapping rule from a specified tenant without deleting the rule.
-## Request
-
-
Path Parameters
-
-The mapping rule was successfully removed from the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or mapping rule was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx
index 048620aa3f7..9a54e8113e8 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx
@@ -12,48 +12,226 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Remove a user from a tenant
+
Removes a single user from a specified tenant without deleting the user.
-## Request
-
-
Path Parameters
-
-The user was successfully removed from the tenant.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant or user was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx
index 6b1c74999d3..89c08a35848 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/report-job-error.api.mdx
@@ -5,56 +5,259 @@ description: "Reports a business error (i.e. non-technical) that occurs while pr
sidebar_label: "Report error for job"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SuYPSVTWlRSJ014Ux2ntRsnHllpD44OILgSYZMAA4CSNRr+984CpER9OJNDe5NmNBKBxS529z2QfGtwfG4huYdrncI0Al2h4U5qdZVBAgYrbdy1Ti+N0QYiyNAKIysygATGftoyztLaSoXWMiRD9kIOcMCUVmcORa6k4MVL5nLumBaiNpYtc1kgq4wWaK1Uc8bZg04H3xREUHHDS3RoaF9rULxESOBBp3/hCiKQFLniLocIDH6vpcEMEmdq3N/eJEf2iCumZ8zl6ANABFbkWHJI1uBWFXm2zkg1h6aZBodo3e86W5HFvn+hlUPlaIpXVSGFL1X8YCne+tC1Th9QOMrJUGGdREuzvkgXOkO6ONxzqKHQGYaaLWVRsBRZyZ3IMWNL6XLGVWdHowwXqFyo315aUQh3g9by+ZGIo85RGSxCzMrohczQMp5lkix5wXz2T0ejRKDqouBpgaFUTQQLbiQN+Iy3Xm57lTjWtOu7L59ZqFsve6ms48pJ7tD3cuOccecHCi14wazQFXb9PihP8OcH0HoTlxu9bPPfSWvTuL20mj7m7nuNnEbgpCM76OgyDliCpgnLbKWVDeV4PTz/QSOk7TY202YL3SaC8+HwOGTadmUs446TA6UdW/BCZiGtZ4BbGZ0WWP5yCOC9rbHbYMkydFwWXYO4ZcEwxYxJxe7HHy/Y+/M3v01f5M5VNonj5XI5MDNxhpl02gy0mcdmJuhLdi8HbJKjIWyvCOI9tG0pw2yFQs6kYE77crTbZtSs423b5VuY3Sd8BDNtSu4ggdrIg8NtxL6Or5jMUDk5W9EZdRDar5nxuiAfPNW1S9KCq0dqVYuGw6D7UWxdltxsTqndAE0E1nFX99IAqRzO0fT3L5X79fWBbwLGn5PJLQsuwokSICVtF4iSKKWSZV1Ccj4cRlDyp3D1djhsyCd1/CcyUQyfqoIrD639dKRipTbY4scnFjgt/qvOaCPncj/uAJptL6AF8YeQUeDl+TEqTgLnwklL7uZygYqFe1BHr5mu1YleJ3qd6PVDer3/aXo9Bm5J5ceWRqu5ry0yURuDyhWrAbvZpmkZN71bX7uuu9GyVGerEz1P9DzR83l6vjn2QDlSjKpsCIfhidS/tRl69dh/bwuM8w+6J66duHbi2nNcayIo0eWaZJVKWw8dEjESiB90auN1eLhsYmylFotm0WkgtSkggXUgTZPE8TrX1jXJmvSXJl5QR3bet2k6kKsDjX9BzkPgw+bRBAktXVIXvKxVxtk7Nr68m7A/uMMlX/liUshd1++G74ZHvZLpMx5Ht1csZBig1zsOOrfE66Nug/HPOPaajkVRG+lWd7QslCdFbtCMaqr/BhJtPO+droMRRO2fjx1Qrv+Z+F7TUTbe6kWXT7ysAhF7+s4WaLsqzHa837fGg3Wm/a5aKB3mR4vQ2FCQ4eDVIWxvrzz7hC7LWvkjWM1b2ahXL1HU1lGdIiikQGX95lu9rTP7FGbY3yEiezWgXgdAdifvXLq8TgdCl7EIyza/aaHTuORSxW0IG1+Mbr5+/jA6+3R1cfn57vLs1WA4cE/O15SYUXLV20fQGNv7ECX1oNP9hNfbu87/pEm2ECH5K64KLhWB1hdh3dL4nhRKCxEkG6UyMHkatWy8h/U65Ra/mqJpaPh7jWYFyf10CwLP9kxa+p9BMuOF3VfI+sm+GLdi1Et2XOw8uu92kKuVh19R0xVE8IirrdDaTJsIcuQZGr+pMHkRQp9NyMV28YEY2kTdipEQWLlnbHeeCoirmyPy9svdhKjXCrFlIJPhS1J9+RIS+AbfaNPal8Wz2o+voeBqXgeSBb/0+Rfnm+n4
+api: eJztWE1z2zYQ/SuYPSVTWlRSp014Ux2ntZsPjyy3B1cHEFyJsEmAAUDJGg3/e2cBUqI+nPGhvUkzGonAYhe7+x5IvjU4PreQ3MO1TmEaga7QcCe1usogAYOVNu5ap5fGaAMRZGiFkRUZQAJjP20ZZ2ltpUJrGZIheyUHOGBKqzOHIldS8OI1czl3TAtRG8uWuSyQVUYLtFaqOePsQaeDfxREUHHDS3RoaF9rULxESOBBp3/iCiKQFLniLocIDH6vpcEMEmdq3N/eJEf2iCumZ8zl6ANABFbkWHJI1uBWFXm2zkg1h6aZBodo3W86W5HFvn+hlUPlaIpXVSGFL1X8YCne+tC1Th9QOMrJUGGdREuzvkgXOkO6ONxzqKHQGYaaLWVRsBRZyZ3IMWNL6XLGVWdHowwXqFyo315aUQj3Ba3l8yMRR52jMliEmJXRC5mhZTzLJFnygvnsn45GiUDVRcHTAkOpmggW3Ega8Blvvdz0KnGsade3376yULde9lJZx5WT3KHv5cY5484PFFrwglmhK+z6fVCe4M8PoPUmLjd62ea/k9amcXtpNX3M3fcaOY3ASUd20NFlHLAETROW2UorG8rxdnj+g0ZI221sps0Wuk0E58Phcci07cpYxh0nB0o7tuCFzEJazwC3MjotsPzpEMB7W2M3wZJl6LgsugZxy4JhihmTit2PP12wD+fvfp2+yp2rbBLHy+VyYGbiDDPptBloM4/NTNCX7F4P2CRHQ9heEcR7aNtShtkKhZxJwZz25Wi3zahZx9u2y7cwu0/4CGbalNxBArWRB4fbiN2Nr5jMUDk5W9EZdRDar5nxuiAfPNW1S9KCq0dqVYuGw6D7UWxdltxsTqndAE0E1nFX99IAqRzO0fT3L5X7+e2BbwLGH5PJDQsuwokSICVtF4iSKKWSZV1Ccj4cRlDyp3D1y3DYkE/q+AsyUQyfqoIrD639dKRipTbY4scnFjgt/qvOaCPncj/uAJptL6AF8ceQUeDl+TEqTgLnwklL7uZygYqFe1BHr5mu1YleJ3qd6PVDen14Mb0eA7ek8mNLo9Xc1xaZqI1B5YrVgH3ZpmkZN71bX7uuu9GyVGerEz1P9DzR83l6vjv2QDlSjKpsCIfhidS/tRl69dh/bwuM8w+6J66duHbi2nNcayIo0eWaZJVKWw8dEjESiB90auN1eLhsYmylFotm0WkgtSkggXUgTZPE8TrX1jXJmvSXJl5QR3bet2k6kKsDjX9BzkPgw+bRBAktXVIXvKxVxtl7Nr68nbDfucMlX/liUshd1++H74dHvZLpMx5HN1csZBig1zsOOrfE66Nug/FLHHtNx6KojXSrW1oWypMiN2hGNdV/A4k2nvdO18EIovbPpw4o139PfK/pKBtv9aLLJ15WgYg9fWcLtF0VZjve71vjwTrTflctlA7zo0VobCjIcPDmELY3V559QpdlrfwRrOatbNSrlyhq66hOERRSoLJ+863e1pl9DjPsrxCRvRlQrwMgu5N3Ll1epwOhy1iEZZvftNBpXHKp4jaEjS9GX+6+fhydfb66uPx6e3n2ZjAcuCfna0rMKLnq7SNojO19iJJ60Ol+wuvtXed/0iRbiJD8FVcFl4pA64uwbml8TwqlhQiSjVIZmDyNWjbew3qdcot3pmgaGv5eo1lBcj/dgsCzPZOW/meQzHhh9xWyfrKvxq0Y9ZodFzuP7rsd5Grl4VfUdAURPOJqK7Q20yaCHHmGxm8qTF6E0GcTcrFdfCCGNlG3YiQEVu4Z252nAuLq5oi8+XY7Ieq1QmwZyGT4klRfvgwb1r4kntF+bA0FV/M6ECz4pM+/UpLo/A==
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Report error for job
+
-
+
Reports a business error (i.e. non-technical) that occurs while processing a job.
-## Request
+
-
Path Parameters
Body
required
variables objectnullable
+
-JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error.
+
-
-
-An error is thrown for the job.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx
index 0da0637d761..efedb383906 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/reset-clock.api.mdx
@@ -12,22 +12,25 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Reset internal clock (alpha)
+
-
+
Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time.
This operation is useful for returning the clock to
@@ -38,14 +41,57 @@ This endpoint is an [alpha feature](/components/early-access/alpha/alpha-feature
in future releases.
:::
-## Request
+
-
+
-The clock was successfully reset to the system time.
-
-
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
index f5c14962ccf..0a5c82b5122 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
@@ -12,44 +12,176 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Resolve incident
+
Marks the incident as resolved; most likely a call to Update job will be necessary to reset the job’s retries, followed by this call.
-## Request
+
-
Path Parameters
+
-The incident is marked as resolved.
+
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The incident with the incidentKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx
index 4c333390ce8..6747513d61d 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx
@@ -5,88 +5,565 @@ description: "Search for groups based on given criteria."
sidebar_label: "Query groups"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query groups
+
-
+
Search for groups based on given criteria.
-## Request
-
-
Body
page object
-
-Pagination criteria.
-
-
sort object[]
-
-Sort field criteria.
-
-
Array [
]
filter object
-
-Group filter request
-
-
-
-The groups search result.
-
-
Schema
page object
-
-Pagination information about the search results.
-
-
items object[]
-
-The matching groups.
-
-
Array [
]
Schema
page object
-
-Pagination information about the search results.
-
-
items object[]
-
-The matching groups.
-
-
Array [
]
Schema
page object
-
-Pagination information about the search results.
-
-
items object[]
-
-The matching groups.
-
-
Array [
]
-
-The group search query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The group with the groupKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx
index 7adcd393ac9..852bbd5893d 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/update-job.api.mdx
@@ -5,66 +5,263 @@ description: "Update a job with the given key."
sidebar_label: "Update job"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update job
+
-
+
Update a job with the given key.
-## Request
+
-
Path Parameters
Body
required
changeset objectrequired
+
-JSON object with changed job attribute values.
+
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `retries` - The new amount of retries for the job; must be a positive number.
-- `timeout` - The duration of the new timeout in ms, starting from the current moment.
-
-Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value.
-
-The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead.
-
-
-
-The job was updated successfully.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx
index 503b282b795..bde035e93b5 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/update-role.api.mdx
@@ -5,56 +5,256 @@ description: "Update a role with the given key."
sidebar_label: "Update role"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtz2zYQ/isYnJIpLcqp06a8qYrTuE1SjyK3B1uHFbgUEYMAA4CWNRr+984C1Ft2fOhRntFYIva93weAu+QeZo5nt3xkFPJJwk2NFrw0+irnGW/qHDyGtYTn6ISVNS3yjN+EJQbMGoVsLn3JfIlsJh9Qs3tc9HjCa7BQoUdLLpZcQ4U846TwFy54wiUZqsGXPOEWvzfSYs4zbxvc9zYukYwyUwQvwac3LMZHrpwosQKeLblf1OTFeSv1jLftJNpG5383+YIk9l0Joz1qT0tQ10qKUID0myPXy0PTZvoNhaf8LJXLS3S0KkrQM3QYDB2G79BT+FEqjymA91ZOG4+OcgCl/i5CpXa1By/QfT60WPn92hwrcqxoznLpagULRprbVe/xtk24l16RIULGcJ12O6G1TXVvt0oy2VWK6BnFvvC2jYquNtrFiN/0L46XMcIN3DpS1wiBzhWNUosebxN+0e8fV62teZA5JQcemHRMG88eQMm8d6f5kziorZkqrH46xMN+m66jJMvRg1QsNoOBY1FwijmTmt2OPgzZbxdvf528Kr2vXZam8/m8Zwtxhrn0xvaMnaW2EPQhudc9Ni7RIqtgwabIIM8l+QTFNm1mrkYhCymIFz5mG4Khnsf8nsdIXD3ESGFsBZ42AysPIDNgN6MrJnPUXhYLqWeHroNOAY0iGzA1jc+mCvQ93+DoR8AcMNdUFdg1/3cdtAl3HnyzlQaX2uMM7Xb8Uvuf3xwF/cfx+JpFE0yYHFlhLPOldCtHlEQltayaimcX/X7CK3iMv37p91uySR1/QSaa4WOtQAdo7acjNauMxQ4/ITGpnQct/q/OGCtnct/vLqc7EL+PGUVqXvTPn2BjZDBTIO5d5BKDxpfkNdKHCYshCFBhozqR7ESyE8mOk+zZI291w+quT6vzqzCNzk/EOhHrRKyniPX22IVwoBlV2RIO0VpjmRGisRZzNi+lCubpXrny3Z10p5viiWsnrj3FtTbhFfrS5PG9XpRhCOBLnvGUzi2XLrvjq6V3drQPq9lAYxXP+DIyps3SdFka59tsWRvr2/SB2vEAVsJURRDScmTWCjHKCFDh8bHO0cL2y+wQqkbnwN6x0eXXMfsDPM4hvkCSy13T7/rv+ketkugTFgfXVyxmGHG3tReszBKpj5qNwi8xHOYbDkVjpV98JbVYnimCRTtoqPZrPHT+gnX6HYV40n35sELJn/+OQ6NpHxttZieXj1DVkYU7s45urrOeuBAWCxP8dkg5zIDaidbFlPu980NUXl8FcglTVY0OO6yexVsQbFVEqMZ5qkTClRSoHW5FtBL7FFfYP9EjO+9RNyPkVhvrTPqymfaEqVIR1db/p8pM0wqkTjsXLh0OPt98eT84+3Q1vPzy9fLsvNfv+Ucfkq+N8xXorTi6WZk9Mkdbbs6SF43Uuk56fPRprUBqwlbIZNkx7TYM2BxPeLaatE2Sji63fLmcgsMbq9qWHn9v0C54djvZsCsOoKSj7znPClBufxy3HfSrUTfvec1+OKQ7Gnz3EPQiUFw19Isn/B4XW8PCdtImvETI0YYA4+owhnE2Jhsb7YMpXpusNAZCYO2fkN05v4lY683sejAefiSidCPEyuRhlAlzGl3CnGf8jt9R2CbUKHAwPF9yBXrWwIzko2H6+w+VPmU3
+api: eJztWEtz2zYQ/isYnJIpLcqp07q8qYrTuE1Tjyy3B1eHJbgSEYMAA4CWNRr+984C1Ft2fOhRntFYIva93weAu+QeZo5n93xkFPJJwk2NFrw0+rrgGW/qAjyGtYQX6ISVNS3yjN+FJQbMGoVsLn3JfIlsJh9Rswdc9HjCa7BQoUdLLpZcQ4U846TwBy54wiUZqsGXPOEWvzXSYsEzbxvc9zYukYwyMw1egk9vWIyPXDlRYgU8W3K/qMmL81bqGW/bSbSNzv9qigVJ7LsSRnvUnpagrpUUoQDpV0eul4emTf4Vhaf8LJXLS3S0KkrQM3QYDB2G79BT+FGqiCmA91bmjUdHOYBSf01DpXa1B6/QfTm0WPn92hwrcqxowQrpagULRprbVe/xtk24l16RIULGcJ12O6G1TXXvt0oy2VWK6BnFvvC2jYquNtrFiN/1L46XMcIN3DpS1wiBzk0bpRY93ib8ot8/rlpb8ygLSg48MOmYNp49gpJF71/Nn8VBbU2usPrhEA/7bbqJkqxAD1Kx2AwGjkXBHAsmNbsffRyyXy7e/zx5U3pfuyxN5/N5z07FGRbSG9szdpbaqaAPyb3tsXGJFlkFC5Yjg6KQ5BMU27SZuRqFnEpBvPAx2xAM9Tzm9zJG4uohRqbGVuBpM7DyADIDdje6ZrJA7eV0IfXs0HXQmUKjyAbkpvFZrkA/8A2OvgfMAXNNVYFd83/XQZtw58E3W2lwqT3O0G7HL7X/8d1R0H8aj29YNMGEKZBNjWW+lG7liJKopJZVU/Hsot9PeAVP8ddP/X5LNqnjr8hEM3yqFegArf10pGaVsdjhJyQmtfOgxf/VGWPlTO773eV0B+IPMaNIzYv++TNsjAxmCsSDi1xi0PiSvEb6MGExBAEqbFQnkp1IdiLZcZK9eOStbljd9Wl1fk1No4sTsU7EOhHrOWK9P3YhHGhGVbaEQ7TWWGaEaKzFgs1LqYJ5uleufHcn3emmeOLaiWvPca1NeIW+NEV8rxdlGAL4kmc8pXPLpcvu+GrpnR3t42o20FjFM76MjGmzNF2Wxvk2W9bG+jZ9pHY8gpWQqwhCWo7MWiFGGQEqPD7WOVrYfpkdQtXoAtglG13djtlv4HEO8QWSXO6avuxf9o9aJdFnLA5urlnMMOJuay9YmSVSHzUbhV9jOMw3HIrGSr+4JbVYnhzBoh00VPs1Hjp/wTr9jkI86b58XKHk93/GodG0j402s5OrJ6jqyMKdWUc311lPXAiLUxP8dkg5zIDaidbFlPu980NU3lwHcglTVY0OO6yexVsQbFVEqMZ5qkTClRSoHW5FtBL7HFfY39EjO+9RNyPkVhvrTPqyyXvCVKmIauv/uTJ5WoHUaefCpcPBn3dfPgzOPl8Pr77cXp2d9/o9/+RD8rVxvgK9FUc3K7NH5mjLzVnyqpFa10mPTz6tFUhN2AqZLDum3YcBm+MJz1aTtknS0eWeL5c5OLyzqm3p8bcG7YJn95MNu+IASjr6XvBsCsrtj+O2g34z6uY9b9l3h3RHg+8egl4EiquGfvGEP+Bia1jYTtqElwgF2hBgXB3GMM7GZGOjfTDFa5OVxkAIrP0zsjvnNxFrvZndDMbDT0SUboRYmSKMMmFOo0uYx5BNqE/gX3i25Ar0rIEZyUaj9PcfE1dkOw==
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update role
+
-
+
Update a role with the given key.
-## Request
+
-
Path Parameters
Body
required
changeset object
+
-A set of changed role attributes.
+
-
-
-The role was updated successfully.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The role with the roleKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx
index 3616a7e6ad4..f2b0f3e8667 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/update-tenant.api.mdx
@@ -5,52 +5,353 @@ description: "Updates an existing tenant."
sidebar_label: "Update tenant"
hide_title: true
hide_table_of_contents: true
-api: eJztWUtz2zYQ/isYnJIpLSmJk6a8KY7TqE1djyO3B0eHFbESkYAAA4CWNRr+984CpEU9/Eib6eQgz3hEEot9fh8ILlbcw9zx9IqPUYP2fJJwU6IFL40eCZ7yqhTgsRlNuECXWVnSME/5ZRh0DDTDG+m81HPmg2iPJ7wECwV6tGRgxTUUyFMex0eCJ1ySjhJ8zhNu8WslLQqeelvhtqFxjqzS8muFTArUXs4kWmZmzOfYseiyHAvg6Yr7ZUnGnLdSz3ldT6IFdP6NEUuSyIz2qD1dQlkqmYWY+58dGVztqjLTz5hRCkpLGfISHY3GqLYN7vNf44KR9Lbb9ZbwY3V1nu6orLsJvYpObuqZJNxLr8hOLG6s5UVMEq83VVBNwgNXGu1i5M8HA/rZdS56wRbgWESPYK7KMnRuVim1pEL96+SDUn/OApw27b4Bh2xdGTYzlm3GFT0n4/cX9BafjypEA0q88Wg1qDb20Vsq6zdg4zvh4gFM7K94zAxlkBNP9qXjd1x+Uz7c0nksjuaoaS1BwaTeTtC9HlXKh+EuOK616GVQVFpAD0rZ+4JL19NVMUX70y5wBJYWM7LdrigHKP2AUCJczNH+ZywlfGZsAT6qfHX8oI+Pg1fMzx54HcD0A4Lp/1qXSOD4rrdfac21FCiYAA9MOqaNZ9egpLjnxVdaM1VY7F3HugaG7DxKMoEepGIRLAxck+JpiIldXbw7Yb8cv/x58iT3vnRpv79YLHp2lh2hkN7YnrHzvp1l9E9yT3tsnKNFVsCSTZGBEJJsguqi15WYyZnMmDehho3bjPLf+6QfxnAY3a3XLXcrK3fKN2SXF6N227cMW8xt02HODKg6KYepqXw6VaC/8HUlHwLJkLmqKMAuW3xuGqgT7jz4yu1du7prz4vnewH4fjw+Z1EFy4zAsBL4XLrWEAVRSC2LquDp8WCQ8AJu4t2rwSCQjir+iEhoM14q0NClWxuO1KwwFhv8hMCkdh509r0qY6ycy227m6xqQPw2RtQS6sUu3t8ZO5VCoA7wZM0WvmUVKGUWeODVgVcHXt3Dq+NdvJ8Zz2am0iLyqvPFpm9HDqw6sOrAqjtY9XLf9m+o1/tJtNZYZrKsshYFW+RSBfXUBmltN6+ziMUD1w5cO3Btl2t1wgv0uRGxV5zlobPsc57yfnxvuf6q/TiuqQmM9rrtOVdW8ZSvImnqtN9f5cb5Ol2Vxvq6f00VuQYrYaoiDmk4kqsFjTIZqPB4X/FooPuRfBI7COw1uzj9OGa/gscFLEMyyeSm6teD14O9Wkn0Do3D8xGLEUbodZaDVi3xeq/aKPwYxaFh7jCrrPTLjzQtpmeKYNEOK0r/LSQae0E73UchnjQX71qg/Pb3ONSalrKLdTP+9AaKMhKxOSK4A75tM59wOTPBgQY1u6FQXdG6OHHQe7aL0PNRIFpmiqLSYbXVc7aQPmfQSU2mKucpJQlXMkNqHK39bMU+xBH2V7TInvWorBF77SI7lz6vpr3MFP2my3T7O1Vm2i9A6n5jwvVPhn9cnr0dHn0YnZyefTw9etYb9PxN7ImWxvkCdMeP2J5odnHbkXZOOh44r2nK6fHG90sFUlOqQxSrhnFXTdvF8YSntw2pSdLQ5oqvVlNweGlVXdPjrxXaJU+vJmuWxR6ZdHQteDoD5bZPe7oeP7loziCeskeeAe2NonkIehkIryq64wn/Qv2jdWutntQJzxEE2uBnHD6J3hyNScl6+s7BRZ20M4ZZhqW/V3bSWdbOh+OT98SX5miqMIImWVjQwRgseMo/8U/krwkpClQMz1dcgZ5XMCf5qJj+/gFLl6k8
+api: eJztWUtz2zYQ/isYnJopLSmJk6a8KY7TuE1TjyO3B1eHJbESkYAAA4CWNRr+984CpEU9/Eib6eQgz3hEEot9fh8ILlbcw9zx9IpPUIP2fJpwU6EFL40+EzzldSXAYzuacIEut7KiYZ7yyzDoGGiGN9J5qefMB9EBT3gFFkr0aMnAimsokac8jp8JnnBJOirwBU+4xS+1tCh46m2N24YmBbJayy81MilQezmTaJmZMV9gz6LLCyyBpyvulxUZc95KPedNM40W0PnXRixJIjfao/Z0CVWlZB5iHn5yZHC1q8pknzCnFFSWMuQlOhqNUW0b3Oe/xgUj6W23my3hx+rqPd1R2fQTehWd3NQzTbiXXpGdWNxYy4uYJN5sqqCahAeuMtrFyJ+NRvSz61z0gi3AsYgewVyd5+jcrFZqSYX618kHpf6YBTht2n0NDtm6MmxmLNuMK3pOxu8v6C0+H1WIFpR449FqUF3sZ2+orF+BjW+Eiwcwsb/iMTOUQU482ZeO33D5VflwS+exPJqjprUEBZN6O0H3elQrH4b74LjWYpBDWWsBA6jk4DMu3UDXZYb2x13gCKws5mS7W1EOUPoOoUS4mKP9z1hK+MzYEnxU+fL4QR8fB6+Ynz3wOoDpOwTT/7UukcDxXW+/ypprKVAwAR6YdEwbz65BSXHPi6+yJlNY7l3H+gbG7DxKMoEepGIRLAxcm+IsxMSuLt6esJ+PX/w0/aHwvnLpcLhYLAZ2lh+hkN7YgbHzoZ3l9E9yTwZsUqBFVsKSZchACEk2QfXR6yrM5UzmzJtQw9ZtRvkf/K0fxnAY3a3XLXdrK3fKN2aXF2fdtm8ZtpjbpsOcGVB1Ug6ZqX2aKdCf+bqSD4FkzFxdlmCXHT43DTQJdx587fauXf215/mzvQB8N5mcs6iC5UZgWAl8IV1niIIopZZlXfL0eDRKeAk38e7laBRIRxV/RCS0Ga8UaOjTrQtHalYaiy1+QmBSOw86/1aVMVbO5bbdTVa1IH4TI+oI9XwX72+NzaQQqAM8WbuF71gFSpkFHnh14NWBV/fw6ngX7x+MZzNTaxF51fti07cjB1YdWHVg1R2serFv+zfW6/0kWmssM3leW4uCLQqpgnpqg3S229dZxOKBaweuHbi2y7Um4SX6wojYK86L0Fn2BU/5ML633HDVfRw31ARGe931nGureMpXkTRNOhyuCuN8k64qY30zvKaKXIOVkKmIQxqO5OpAo0wOKjzeVzwa6H8kn8QOAnvFLk4/Ttgv4HEBy5BMMrmp+tXo1WivVhK9Q+P4/IzFCCP0estBp5Z4vVdtFH6M4tAwd5jXVvrlR5oW05MhWLTjmtJ/C4nWXtBO91GIJ+3F2w4ov/41CbWmpexi3Yw/vYGyikRsjwjugG/XzCdczkxwoEXNbihUV7QuThwNnu4i9PwsEC03ZVnrsNrqOVtIXzDopSZXtfOUkoQrmSM1jtZ+dmLv4wj7M1pkTwdU1oi9bpGdS1/U2SA35bDtMt3+ZspkwxKkHrYm3PBk/Pvlhzfjo/dnJ6cfPp4ePR2MBv4m9kQr43wJuudHbE+0u7jtSHsnHQ+c17Tl9Hjjh5UCqSnVIYpVy7irtu3ieMLT24bUNGlpc8VXqwwcXlrVNPT4S412ydOr6ZplsUcmHV0Lns5Aue3Tnr7HP1y0ZxBP2CPPgPZG0T4EvQyEVzXd8YR/pv7RurXWTJuEFwgCbfAzDp9Eb44mpGQ9fefgokm6GeM8x8rfKzvtLWvn48nJO+JLezRVGkGTLCzoYAwW0VcT0hNoGJ6tuAI9r2FOslEp/f0DuX6oQA==
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update tenant
+
-
+
Updates an existing tenant.
-## Request
+
-
Path Parameters
Body
required
+
-The tenant was updated successfully.
+
-
Schema
Schema
Schema
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found. The tenant was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
index 61e05694190..7c32822556f 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
@@ -5,74 +5,294 @@ description: "Update a user task with the given key."
sidebar_label: "Update user task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update user task
+
Update a user task with the given key.
-## Request
+
-
Path Parameters
Body
changeset objectnullable
+
-JSON object with changed task attribute values.
+
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `candidateGroups` - reset by providing an empty list
-- `candidateUsers` - reset by providing an empty list
-- `dueDate` - reset by providing an empty String
-- `followUpDate` - reset by providing an empty String
-- `priority` - minimum 0, maximum 100, default 50
-
-Providing any of those attributes with a `null` value or omitting it preserves
-the persisted attribute's value.
-
-The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
-This ensures correct event emission for assignee changes.
-
-
-
-The user task was updated successfully.
-
-
-
-The user task with the given key cannot be updated. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx
index ba9f1d5b7f6..0bcc60455a2 100644
--- a/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx
+++ b/docs/apis-tools/camunda-api-rest/specifications/update-user.api.mdx
@@ -5,56 +5,258 @@ description: "Updates a user."
sidebar_label: "Update user"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SsYnJIpLcqJ06a8qYrdOJO6HltuD44PS2IlIgEBBgAtazT8750FSH078aFHeUZjEli8/cB7ILlL7mHmeHbP7xxa/pBwU6MFL42+FDzjTS3AY5hLuEBXWFnTJM/4XZhyDFjj0A6+aJ7wGixU6NES5JJrqJBAHNpwmXBJK2vwJU+4xe+NtCh45m2Du/CTElm/kJkp890984bFqAY84a4osQKeLblf1OTLeSv1jLftQ3SAzv9hxIIsCqM9ak+XUNdKFiHN9Ksjf8t9KJN/xcJTVpaK4iW6AFOCnqHDALQd86fbv69YXMbm0pcs2ooYOHhvZd54ZI+gGnSxZD92Fiu4m92hWmmcs91aDXibcKxAqpdjBPM9kBqcmxsrXo7Tr9iBahPupVcEQKwar4q5OxPpdRO3kLc0vU2YMOBqo10s1Zvh2f6O9Cxic3AdbQRzTVGgc9NGqUXI7mw4PLy0tuZRChRMgAcmHdPG0+5JQeR7hlC1NbnC6pd9Ym07GLHraMkE+lD0yBxwLBrmKJjU7P7mYsx+P3v328Or0vvaZWk6n88HdlqcoJDe2IGxs9ROC/qR3esBm5RokVWwYDkyEEKST1BszS7maizkVBYkKB9zDcHQ9r6EmnF2nw5TYyvwJHsr99gxYnc3l0wK1F5OF1LP9l2HNVNoFGFAbhqf5Qr0N74myM84OGKuqSqwi5582w7ahDsPvtlIg0vtcRZOuVX8Uvu3bw7y++Nkcs0iBCuMQDY1lvlSut4RJVFJLaum4tnZcJjwCp7i3a/DYUuY/kWqHGmGT7UCHai1m47UrDIWO/6ExKR2HnTxf+2MsXImd/1uy7gj8YeYURuUejZ8u8/3C2NzKQTqQE/Wnc69qkApM8ejro66OurqB7r62TOOpDQ1jT4K6Siko5CeFdK7Q298I82oypZ4iNYay0xRNNaiYPNSqgBPL4697+4JFrl41NpRa0et7WutTXiFvjQifvgXZWgT+JJnPKWnlkuX/Wd+Sx/0aB/79kFjFc/4MkqmzdJ0WRrn22xZG+vb9JH24xGshFxFFtJ0lFZPGWUKUGH40NbRxOY38xiqRgtg79nN+e2E/Qke5xA/EcnlNvT74fvhQVQyfQZxdH3JYoaReBuHQQ9Lqj4IG41fAhyaHw6Lxkq/uKVlsTw5gkU7aqj4K0J0/gI63UcjnnQXFz1NPv07CTtNB9nNurFy/gRVHWW41RjpWj8runVdiPXAuqOw7tkQY6cmBNfxaT9N2nO0LtZlODjd5+71ZZBgYaqq0eEc1rPYjoGNshWqcZ7KlXAlC9QON8LuzT7HGfZP9MhOB7TlkZf98TuTvmzyQWGqtIjLVv9zZfK0AqnTzoVLx6O/7q4+jE4+X47Pr27PT04Hw4F/iu2P2jhfgd6IIzZBwtvdbp4b/ayDrbhuez0++bRWIDURLkS+7PR3Hxpzjic8W3XoHpJORPd8uczB4Z1VbUvD3xu0C57dP6w1F0QqpKNrwbMpKLfbxtuM8tVN1795zV7W3DuYQjcIehHUrxq64wn/hovNVmP70Ca8RBBoQ5hxehyDOZkQyHr5XjuwTfoVo6LA2j9ju/VwJ9GtTrrr0WT8kUTU9R4rI2ixhTk1PmHOM/6Ff6G4TahU0GcYX3IFetbAjOwjMP39B76XdQU=
+api: eJztWE1z2zYQ/SsYnJIpLcqJ07q8qYrTOJO4HltuD64PS2IlIgEBBgAtazT8750FSH078aFHeUZjEli8/cB7ILlL7mHmeHbP7xxa/pBwU6MFL42+FDzjTS3AY5hLuEBXWFnTJM/4XZhyDFjj0A7+1TzhNVio0KMlyCXXUCGBOLThMuGSVtbgS55wi98baVHwzNsGd+EnJbJ+ITNT5rt75g2LUQ14wl1RYgU8W3K/qMmX81bqGW/bh+gAnf/DiAVZFEZ71J4uoa6VLEKa6VdH/pb7UCb/ioWnrCwVxUt0AaYEPUOHAWg75k+3f12xuIzNpS9ZtBUxcPDeyrzxyB5BNehiyX7sLFZwN7tDtdI4Z7u1GvA24ViBVC/HCOZ7IDU4NzdWvBynX7ED1SbcS68IgFg1XhVzdybS6yZuIW9pepswYcDVRrtYqjfDs/0d6VnE5uA62gjmmqJA56aNUouQ3dlweHhpbc2jFCiYAA9MOqaNp92Tgsj3DKFqa3KF1S/7xNp2MGLX0ZIJ9KHokTngWDTMUTCp2f3NhzH7/ezdbw+vSu9rl6XpfD4f2GlxgkJ6YwfGzlI7LehHdq8HbFKiRVbBguXIQAhJPkGxNbuYq7GQU1mQoHzMNQRD2/sSasbZfTpMja3Ak+yt3GPHiN3dXDIpUHs5XUg923cd1kyhUYQBuWl8livQ3/iaID/j4Ii5pqrALnrybTtoE+48+GYjDS61x1k45VbxS+3fvjnI74+TyTWLEKwwAtnUWOZL6XpHlEQltayaimdnw2HCK3iKd78Ohy1h+hepcqQZPtUKdKDWbjpSs8pY7PgTEpPaedDF/7UzxsqZ3PW7LeOOxO9jRm1Q6tnw7T7fPxibSyFQB3qy7nTuVQVKmTkedXXU1VFXP9DVz55xJKWpafRRSEchHYX0rJDeHXrjG2lGVbbEQ7TWWGaKorEWBZuXUgV4enHsfXdPsMjFo9aOWjtqbV9rbcIr9KUR8cO/KEObwJc84yk9tVy67D/zW/qgR/vYtw8aq3jGl1EybZamy9I432bL2ljfpo+0H49gJeQqspCmo7R6yihTgArDh7aOJja/mcdQNVoAO2c3F7cT9id4nEP8RCSX29Dnw/PhQVQyfQZxdH3JYoaReBuHQQ9Lqj4IG41fAhyaHw6Lxkq/uKVlsTw5gkU7aqj4K0J0/gI63UcjnnQXH3qafPpnEnaaDrKbdWPl4gmqOspwqzHStX5WdOu6EOuBdUdh3bMhxk5NCK7j036atOdoXazLcHC6z93ryyDBwlRVo8M5rGexHQMbZStU4zyVK+FKFqgdboTdm32OM+zv6JGdDmjLIy/743cmfdnkg8JUaRGXrf7nyuRpBVKnnQuXjkdf7q7ej04+X44vrm4vTk4Hw4F/iu2P2jhfgd6IIzZBwtvdbp4b/ayDrbhuez0++bRWIDURLkS+7PR3Hxpzjic8W3XoHpJORPd8uczB4Z1VbUvD3xu0C57dP6w1F0QqpKNrwbMpKLfbxtuM8tVN1795zV7W3DuYQjcIehHUrxq64wn/hovNVmP70Ca8RBBoQ5hxehyDOZkQyHr5XjuwTfoVo6LA2j9ju/VwJ9GtTrrr0WT8kUTU9R4rI2ixhTk1PmEeYzahSkGbYWzJFehZAzOyjaD09x/9aXQJ
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update user
+
-
+
Updates a user.
-## Request
+
-
Path Parameters
Body
required
changeset object
+
-JSON object with changed user attribute values.
+
-
-
-The user was updated successfully.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden. The request is not allowed.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/docs/apis-tools/camunda-api-rest/specifications/versions.json b/docs/apis-tools/camunda-api-rest/specifications/versions.json
new file mode 100644
index 00000000000..71ac271e29b
--- /dev/null
+++ b/docs/apis-tools/camunda-api-rest/specifications/versions.json
@@ -0,0 +1,12 @@
+[
+ {
+ "version": "1",
+ "label": "Unused but required field",
+ "baseUrl": "Unused but required field"
+ },
+ {
+ "version": "8.6",
+ "label": "Unused but required field",
+ "baseUrl": "Unused but required field"
+ }
+]
diff --git a/docs/apis-tools/operate-api/sidebar-schema.js b/docs/apis-tools/operate-api/sidebar-schema.js
index 747e15b625b..c680d76315f 100644
--- a/docs/apis-tools/operate-api/sidebar-schema.js
+++ b/docs/apis-tools/operate-api/sidebar-schema.js
@@ -6,7 +6,7 @@ module.exports = {
"apis-tools/operate-api/operate-api-authentication",
"apis-tools/operate-api/operate-api-tutorial",
{
- Specifications: require("./specifications/sidebar.js"),
+ Specifications: require("./specifications/sidebar"),
},
],
};
diff --git a/docs/apis-tools/operate-api/specifications/by-id.api.mdx b/docs/apis-tools/operate-api/specifications/by-id.api.mdx
index 5bd23389b1c..2e8f502d730 100644
--- a/docs/apis-tools/operate-api/specifications/by-id.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-id.api.mdx
@@ -5,55 +5,191 @@ description: "Get decision instance by id"
sidebar_label: "Get decision instance by id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU
+api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision instance by id
+
Get decision instance by id
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
evaluatedInputs object[]
Array [
]
evaluatedOutputs object[]
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx
index 3975e1c8537..3065bae87d2 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx
@@ -5,55 +5,156 @@ description: "Get process instance by key"
sidebar_label: "Get process instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4=
+api: eJzlVt9P20gQ/leseWp7BoeWO1V+Q2CqHBxEkLYPKDqt15Nki73r7o7DRZb/99Os7RASg3KPp74ktne++fnNztRAYuEgfoCJNRKdG2tHQkuEWQimRCtIGT3OIIZ0fYXrv08ghFJYUSChZWANWhQIMTziGkJQGmIoBS0hhAydtKpkDRDDFa4DMw/K1k6gekMhWPxZKYsZxGQrDMHJJRYC4hpoXbJqpQkXaCGEubGFoPbTH6fQNDOGu9Joh44RH0cj/ntp+r6SbBNCkEYTamIRUZa5kj6+6IdjuXrfskl/oCSO2XI2SLVWONZD3PM4Nv0NrVOtjTdBnz7ug6ZisYVzZJVesFRaFrqvWjYoUQqLmq4Od9bLX+bm6cZk2FPhcLwjYelCEA56gzp79czR4AmDqoLpeXY+HX9LIITz278m18k0ueDns5vz5Dq5gFnDzJMq62rbaUmNyVHorZRe4FxpxTU/PCpCLTS9meKd5vG6QSorq1zYdzun771SRTlr2m27pmmaEE6HWDzWK5GrLOB2QUevs7m0Js2x+O2/spqLULkDOVqgc2IxXM1Nbw8dth/2DrZyklhr7CYTn/YzcWlsqrIM9cscfIg+/P/DPd0P964tOHLpnamsxEAbCuam0tmvwYLfh/rhbDIOtgIO0AN+gXzwfYmysorWfgCnKCzaIz+UHmZNWIM05lGhf5vtzuEvSHtDOEjXQTu/C6Sl4XG/QJ8KnuQxRKuTqMMc9RgX1Y+4boCdsat+GahsDjHUbXKbOIrqpXHUxHVpLLHwSlgl0rzNLZ+1hZ2LKudM5kaK3H/e9Xu6xIAPeN3gRYKWGDAFWuvH/jI2dkfd59Hn0aAmFn1FyzMxnvUsicpBPa3woCa/nPSFume5Nui+OJtii1Jd+eR3m9TtJLk7myZH98n9/fj2pt+qOhxP/q2Cb7R0LnqH/PDzQtBLX/Zc/fP71PNK6bnx8I5ft37bw2BSpbmSHMp+wCYQfpMKhCS1wkDoLJCmKHPk22mXVfwU9GrnxgaF0YoMM9sjyZqKmbA0htppz60rpK9hSyQOysVR9PT0dCxFUelMHEtTcBJyJVE7n8cub9fdl3AHnBnpNmhl/HtkcY4WtcSoU+Qi1rrqFzU4OR4dj1pWOSqE3jL0dgu9yNmmPIT/UFTmQvl1xDtYd+31AKsT2Kwozw0GIcSschZ2jfIAdZ0Kh19t3jT8+WeF1jf9c1/5LsyU4+cM4rnIHe75tLki4d1dt3y/D15f0AdD6Mmr176r84rfIGx3Y//b8Fq2RJGh9V61J2dSYklbmL1FnPtmcw99SaYQgqg4Uc+L3Utue+2D/tR1KzE1j6ibZuMe8Ts72DT/Ag1odYQ=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process instance by key
+
Get process instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx
index 39f7967ede2..605f0a1a229 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx
@@ -5,55 +5,146 @@ description: "Get process definition by key"
sidebar_label: "Get process definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX
+api: eJzlVt9v3DYM/lcEPq2dc76k2VD4LcCuRZZhCXI37CE4FLJM36mxJVeSLzMM/+8FJdv3y826x6Evd5ZEfiQ/kqJacHxjIXmCB6MFWvsb5lJJJ7WCdQS6QsNpcZtBAmlzh82nK4ig4oaX6NCQaguKlwgJPGMDEUgFCVTcbSGCDK0wsvJwCdxhw3TOqmCJZXtTERj8UkuDGSTO1BiBFVssOSQtuKYicKkcbtBABLk2JXdh69dr6Lo1qdtKK4uWNK7mc/o7Nr6sBVmFCIRWDpUjEV5VhRQ+wvizJbn23LJOP6NwFLUhPpwMVija73Ev6ukZRa0zUm3oYIfGymD1VZh3VwfSK76ZBEurUvVJpGxNSDhUXLnJQzqVrqCt80LoOjq/nmL1Vu14ITNG6UPrvs1uZXRaYPnzf2XZOu5q+50MlWgt30xzLZV1XInpw7DxGisLY7QZmXh3zsQHbVKZZaiOOXgbv/3/h3t9Hu5jSDhS6q2ujUCmtGO5rlX2Y1TBL1P9cPNwyw4CZugVfgA+uggsitpI1/iRkCI3aC78Jfm07qIWhNbPEv1qfToZPqKbGAssbViYKSW6raYRtEFPBk2XBOLdZdxrXey1bNw+Y9MBOWR2w4iqTQEJtIHgLonjdqut65K20saR8I4bydMi8EtnIbk5rwtis9CCF3771PfVFhkd0C1P481tkVEZBOszIpJsHMO9n7+fTyKR6DdQ9sWxx9k6V03iBOFJJD8wh2QtSS4EPSRoTDiv5J2nv5/v9w+Lx5vV4mK5WC5v7/8cZn2vRyPoIOkjSu+id4jWQQgG6Q9Dvf7+98rXllS59up9jd37NwiyhzotpKBQzgPWjPvpzrhwcoeMq4wJXVYF0g01VNZQ7PTFBthcG1ZqJZ2m6vaazuiaKmGrtaOKD+3Lhc9hKCQKyiZx/PLyMhO8rFXGZ0KXREIhBSrreex5+6PfiU6UMy3sqC21X8cGczSoBMY9kI2PngpwOZvP5qGqrCu5OjD0b210xNqYIIf/uLgquFSE6l1s+xZ7gt1luHxOmwwiSAh0HfXN8gRtm3KLf5mi62j7S43GN/++t3wnZtLSdwZJzguLZ16NVyX89Ng/Ct+w156Ok2EMJawa39tFTSuIwqvN/3brLoIt8gyN9yuc3AiBlTvQOXsiUveM99HHxQoi4DWRNRJ6UuEefdKftg0SK/2MqutG9xytycGu+wqWo/3N
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition by key
+
Get process definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx
index 8e4bbe0400e..68c8ba3c359 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx
@@ -5,52 +5,169 @@ description: "Get incident by key"
sidebar_label: "Get incident by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ==
+api: eJzlVttu20YQ/RVintqUsZxLi4BvqrR2GcukIFFOUMMgVuTI2pjcZXaXTgWC/17MkqIvUprksciLRM7O9cwM9zRg+a2B4BpCmYkcpYUbH1SFmluhZJhDAOvdBe7SN+BDxTUv0aImiwYkLxECuMMd+CAkBFBxuwUfcjSZFhV5gAAucOepjSf2AXzQ+LkWGnMIrK7RB5NtseQQNGB3FbkU0uItavBho3TJbSf64y207Q2Zm0pJg4YsXp+e0t/TkMs6y9AY8CFT0lLQoAFeVYXIXF2jT4b0msPIav0JM8qx0oSCFV0UqvF70nN2FHqKGyEFxbr4UdNQGstlht9v2KkMqsZqIW/BB5R1Sb1dRcs5m4RnIZuCD6voIoo/ROBDGKeX4/k8jM5TtljEC/DhffxnGsXpgiWLkC3BB/aRTVZJGEfpLFwmLGKLp+eTOJqG7nzvgn1MFuNJkl6NZys2SCfj2YxNUzZjlyxKBvEq+mscTd0JSVJ2xaIEfLhky+X4nKXL8G+Wso8TxqYu+d7NlE3C5eOgDwIKO36S0Fm8uEyjOEnP4lU0hZvWhxKN4bdHQGt9yDS6IUlEeVzBWG7/E+/xJAmvGFURni/GiUt8wZbx7Mo9zlk0DaNzl8gntf6BPqPk0tJSHmRFp8IWJBo2uW1J/PbYgoTynhci92gT0divL0ql1brA8rcfXRjCqDbfrOvNa/hGN0S/DUcPjw/+YzCY1koPSLw5ROJM6bXIc5RPMXgxevH/L/ftYbmLruFIrTeq1hl6Ullvo2qZ/xxT8PuxfRjPQ+9RwR46g58AD/qcYVZrYXfuTl8j16hfuvvu+qb1G8iUuhPo3m6eX+3naId73VvvvI4KlGi3ipjDLToIiBQEMLp/NdrrmlFzh7sWKLi+3/OJWhcQQNOB2QajUbNVxrZBUyltSfmea8HXRYclnXWN3PC6IOQKlfHCiZ/nmWzRowNiLMRF7BY9ankX/cRdvko/c/fu9N3pUU+k+hUvD4Pw4GdrbXXUT6d81JPjOfvGLEmvK3rfjKG5vBIXDvSejMVzRjfOyyVb0nW4J2a9Xes/afDgpU/RJUTvnRLstc/2s/n+Q+LmSMiNcub9PMWOMKI3r9eFyKiUw4KVxx0p83hmxT16XOZepsqqQPoa9dzH2w82PXl7txulvVJJYRVNsrO0WtU0CVulbHf50qryzPWwGyQqygSj0ZcvX04yXtYy5yeZKgmEQmQojcOxx23WS/xnxrnKzGAtlHsfadygRpnhqHdkRuSVBrkr9tXJ6clpN1XGllw+CnR8ZZ5gNbTF4j92VBVcSPLlEmv6dbqG+1euuf1CgQ8Bubrx+8W4hqZZc4MrXbQtiT/XqN1SP+yR27pcGHrOIdjwwuBBLsMnEH5Z9Lz9V++Q0x9NeT+kcue2t6jpDfyOTrvflkjQFnmO2mXTnYyzDCv7yOaAu9N+DN+Zc0aUkdcEzADesxl23o/m0zSdRqLuULbtkJ6ld0qwbf8FBbFpuw==
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get incident by key
+
-
+
Get incident by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx
index 43f441aff9b..ba88765b28f 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx
@@ -5,55 +5,184 @@ description: "Get flow node instance by key"
sidebar_label: "Get flow node instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g=
+api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get flow node instance by key
+
Get flow node instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx
index 1b457025295..c115fafa252 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx
@@ -5,52 +5,147 @@ description: "Get decision requirements by key"
sidebar_label: "Get decision requirements by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA=
+api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision requirements by key
+
-
+
Get decision requirements by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx
index 57d1ad2a758..074e3af1866 100644
--- a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx
@@ -5,55 +5,150 @@ description: "Get decision definition by key"
sidebar_label: "Get decision definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ==
+api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision definition by key
+
Get decision definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/by-key.api.mdx b/docs/apis-tools/operate-api/specifications/by-key.api.mdx
index 1e50a6414fb..8c834bc2962 100644
--- a/docs/apis-tools/operate-api/specifications/by-key.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/by-key.api.mdx
@@ -5,52 +5,147 @@ description: "Get variable by key"
sidebar_label: "Get variable by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA=
+api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY=
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get variable by key
+
-
+
Get variable by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/delete.api.mdx b/docs/apis-tools/operate-api/specifications/delete.api.mdx
index a187e6f28d3..cd579bacead 100644
--- a/docs/apis-tools/operate-api/specifications/delete.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/delete.api.mdx
@@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key"
sidebar_label: "Delete process instance and all dependant data by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E=
+api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc=
sidebar_class_name: "delete api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Delete process instance and all dependant data by key
-
+
Delete process instance and all dependant data by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx
index 51c027b1625..6900610f67b 100644
--- a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx
@@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id"
sidebar_label: "Get flow node statistic by process instance id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6
+api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Get flow node statistic by process instance id
-
+
Get flow node statistic by process instance id
-## Request
-
-
Path Parameters
-
-Success. Returns statistics for the given process instance, grouped by flow nodes
-
-
Schema
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx
index 9ea6e3d454d..cabe55b339c 100644
--- a/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx
+++ b/docs/apis-tools/operate-api/specifications/operate-public-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Operate Public API
+
To access active and completed process instances in Operate for monitoring and troubleshooting
-
- Authentication
-
+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t
>
+
-
+
Get decision requirements as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx
index c2c500718a5..a79a2c680b5 100644
--- a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx
+++ b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx
@@ -5,59 +5,131 @@ description: "Get process definition as XML by key"
sidebar_label: "Get process definition as XML by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg==
+api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA==
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition as XML by key
+
Get process definition as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js
index ebb41a15e74..ebfb2e5196e 100644
--- a/docs/apis-tools/tasklist-api-rest/sidebar-schema.js
+++ b/docs/apis-tools/tasklist-api-rest/sidebar-schema.js
@@ -5,7 +5,7 @@ module.exports = {
"apis-tools/tasklist-api-rest/tasklist-api-rest-overview",
"apis-tools/tasklist-api-rest/tasklist-api-rest-authentication",
{
- Specifications: require("./specifications/sidebar.js"),
+ Specifications: require("./specifications/sidebar"),
},
],
};
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
index e15045dcb79..5a98c4d7b6e 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
@@ -5,55 +5,290 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu
sidebar_label: "Assign a task"
hide_title: true
hide_table_of_contents: true
-api: eJztWVlvGzkS/isFvkyCbUvOTHYxEPaA4ig7ymEbsrwBxjFiqlmSOGaTHZItRRD03xdFsltnbDk7+xY/tcW6u46P1Uvm+cSxzg0bcnfPbjMm0OVWll4azTqs65ycaODgubuHufRTuKPHvrgDb+COh3PEOzAW/BSB517OECqHtgUD9JXVLhwQV4tlzJRoOUnvC9ZhkT/ozljJLS/QoyWDlkzzAlmHRXUsY5IMKrmfsl0rh1OE/msw4y1NFr9U0qJgHW8rzJjLp1hw1lkyvyhJsvNW6glbrW4jMTr/yogFUWzL/zhFDZWTegKD3tUQupf9GIu3H4fAKz9F7WUevAJv7lHD2Chl5sSQBMPIiAWsPYSCL2AUAiXI2Nxoj9qTbl6WKklr/+HIgOW+7Wb0B+aegmYpol6iC7zpfex7uRuzDZ948CMYnsWXmKSs7QXp4PxiCCawcwVzYs+5UihASIu5VwsYW1MEAd3LfuuTptfiFs5jAXOpFGjjyWU+UkjJI9Bj7rcVNhK2LbI4Nha/ZZtGFI4kjvCTxq8UPUnmlNw5FCA1+Kl0ILXzXOfYYquMcXo/FzO0VgqMWV6k+Ke4jYxRyPXhwN1RSt016QZ+yj3FiCuLXCxqK0X9mpv/+YRL3YILcmouHTYiPumiciE+Y2mdh0qvebQAo9WCaPWuqGDfmFfKxzxfrXYNHqQMDAFzIeMoWFHOhgtmHVtjIa+sRe1jJbOMeekVhYVqNcYryWWrFem06EqjXUzDn09P96voQoOr8hydAxsaw5+a+VI8nvOUkJWWXyoEKahmxxLtdttYZanvHCOLKPfY6eE1jqWWdZd7TNS1QwsUV2piTQW8uvxwDqIRFGSX1lD8zr/LwsQcBOUWQ5hfc39sr5jzdSOHwI8CnlkkFQKo1864oowxY7gjb1q1kqEs8A7GEpV4HrWbolT4P+mPEh61oFG0Z8PxnTJkjUNLatpSkPT51IRqr0vRm/0cuPJH+RaaJJHujy8uLrRa1OMLdVXQoD4b9LrD3muWsbOLD5fve+m5e37Wex8e33T79HC7ytjY2OIdLh63YoBjtKhz3HQFiD34Qw/HZPKemDiVOQgslVmgiCKhH12lfyiONBhqiiw261Tci3BcKdWY8R+0TsbWkGyR2uME7ePGzCLrn2ZRNIj7aMPfXpKJ0r0xtugVIxQCxRHjpO/WijGx0X9RKb2GfyXjLEbLAu1DYUqFvm5CT0+BJGKj/zxcaHsqCSBuVFs676cR/P0G1UMc5COlv6Nxxx6Pmmt/TEpTfUZqSmbunMllaH0BAG5VvajwuH5GMkWFIKjsxwk513Xf5BSdnnhZYEx9AizX5fEKIsdJVT5FTc61kPTLv62pSrehiVvLFwcVNTwwCUx7qqTHwh3C3Rv6aAY+VR015SdpkzQNCOZxv91CmjDWTfbtxavPHy8G73oDlrHfe71Xvc/XV73B52H36l3orKWVxkp/4LIwDKM2nsZW08z3FtDhVE6mGG2ecVVFCLjxY83cgm7EQ4SXA/4jV39HHOFapAvYbLcRFlLLgjw5zVjBv8bnF6enG1jxr6cUkU1UN0gILgG6l4cwXFcDWmvCfaAGcfEu0AyN1D3TRfAZPct4nCZXHHfPW38f2fY/HxAYbpx8H1NngF9zLOPNIecOI/0372IB8BKGvvsG6Id/QIDzD6DR0pqRwuIvT0Wl5GrljhhWXQ3pKN4lLJYWHWofx8Nvw+ElRGGQG9GAhRi7Gnu34I2xgF855XkGL09PQWpBPqADDj+94gISav8pshLRy22ic+Phjam0aEgods6A0bsj75efqWcU6ByfHNGVuhAPooelNTMpgs6RlTiGDeJt9wK5ycONRIROW0+Bx3X2YnLVU+P6miC2saCMua9KeIatSSujBFVmAskTRzNioziCjKYqfnlKVVCLAmHQ6Z88TPksFnuJtpDOxRStL2JcGxrykSUgljT/f6Tlj7R8PC1fflezbkBMs9VL7XtMof6ReT8y7+HMC976qRFxNZtPwxrXT1mHtWcv2pRUrr2MubVqx07HMubQzuo1b2UV67BlTKBVp91eTo3zq86yNNavWMZm3ErCQCFr6CxmesIxTJmcq/DzIbRIB5tLEFrdRu3xXmLsjrhfT389PSiJSL8hZZ38azlT78vDl/1AfFBS2EQ7zKuILG+WLDfmXiLr3NxmbITcoj25p7vTze0m6RWJjPGpGdZAupR029q15CzQnYx4AEfbsEm6CDf5jEuV0CdcoRqffOCaT1BAripHW2zK/7SmJ2T8vn81PLnqXV31L87rhX0yaLVtf2NeClMISrgmByJWU7+pi+vtx2FIQeo3g/WuvhdLe3v1vU79b255w6aULBybYMwGDFbS+WbNv/8Gawpa/0AApifenFQuvsqNFkkz3PJSCrWA5uIBI1q500U23U+p3JXREycFptFPNUMFGJB+3YJ5HvI0FgsFzXXa7fl83sp5UWnBadVFQVYyR8Lwneb7yfv0S7bDLEzuGm5pwv9tW9+520mQa5PUWb10YbMXsWycL7je0LL1oWg3asv1FPk/fFFKmeTxq2+XiktNFgZfl6kX3ZDZcSvnWMY6zSel1JBus9RXbthySSVxbdVqRT9/qdAuYvnVbSjUpZCOngXrjLly+IC/zwbpM9RzOPyZ6qD5dfHqRWiAqqL/WMZC8dSfxFZ0EZ0iF2iDUfHwLKo+GZKINfPebn2V1RzdnK5TD9LebvT5y+7w7Deq0PStrDCCmCyf09aSz6Ol8UtR6EnhtyVTXE+qMBdZFEp//wXXQund
+api: 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
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a task
+
Assign a task with `taskId` to `assignee` or the active user. Returns the task.
-## Request
+
-
Path Parameters
Body
+
-When using REST API with JWT authentication token following request body parameters may be used.
+
-
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.
-
-
Schema
-
-An error is returned when user doesn't have the permission to assign another user to this task.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "An error is returned when user doesn't have the permission to assign another user to this task.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
index a2205914bde..521bd7abd1d 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
@@ -5,55 +5,297 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th
sidebar_label: "Complete a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a task
+
Complete a task with `taskId` and optional `variables`. Returns the task.
-## Request
+
-
Path Parameters
Body
variables object[]
+
-Variables to update or add to task during the task completion
+
-
Array [
]
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.
-
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "User has no permission to access the task (Self-managed only).",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
index 53e956d2823..5b6e974ad7e 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
@@ -12,33 +12,136 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a form
+
-
+
Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version).
-## Request
+
-
Path Parameters
Query Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the form with the `formId` and `processDefinitionKey` is not found.
-
-
Schema
+
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
index ca8de33aad9..f8f3b4c5fe1 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
@@ -5,44 +5,231 @@ description: "Get one task by id. Returns task or error when task does not exist
sidebar_label: "Get a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "get api-method"
info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a task
+
-
+
Get one task by id. Returns task or error when task does not exist.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
index 72f7da281e4..2b79f248cbd 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
@@ -12,40 +12,111 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a variable
+
Get the variable details by variable id.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
draft object
-
-The draft value of the variable
-
-
-
-An error is returned when the variable with the `variableId` is not found.
-
-
Schema
+
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
index 27e5668f33d..93d64bbcecb 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
@@ -12,48 +12,177 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Save draft variables
+
This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
-## Request
-
-
Path Parameters
Body
required
variables object[]
-
-Variables to update or add to the task.
-
-
Array [
]
-
-On success returned.
-
-
Schema
any
-
-An error is returned when the task is not active (not in the `CREATED` state). An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
-
-An error is returned if an unexpected error occurs while persisting draft task variables.
-
-
Schema
+
+
+
+
+
+
+An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "500": {
+ description:
+ "An error is returned if an unexpected error occurs while persisting draft task variables.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
index 2192123cf65..6ada10bf7e5 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
@@ -12,44 +12,183 @@ custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search task variables
+
This method returns a list of task variables for the specified `taskId` and `variableName`. If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned.
-## Request
+
-
Path Parameters
Body
includeVariables object[]
+
-An array of variable names that should be included in the response.
+
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
draft object
-
-The draft value of the variable.
-
-
]
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
index 9a6fa3c735a..0b27e33048f 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
@@ -5,72 +5,500 @@ description: "Returns the list of tasks that satisfy search request params.
sidebar_label: "Search tasks"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search tasks
+
-
+
Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request
+
-
Body
followUpDate object
+
-A range of due dates for the tasks to search for.
+If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ value: {
+ type: "string",
+ description:
+ "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.",
+ },
+ operator: {
+ type: "string",
+ description:
+ "The comparison operator to use for the variable. * `eq`: Equals",
+ enum: ["eq"],
+ },
+ },
+ title: "TaskByVariables",
+ },
+ },
+ tenantIds: {
+ type: "array",
+ description:
+ "An array of Tenant IDs to filter tasks. When multi-tenancy is enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.",
+ items: { type: "string" },
+ },
+ sort: {
+ type: "array",
+ description:
+ "An array of objects specifying the fields to sort the results by.",
+ items: {
+ type: "object",
+ properties: {
+ field: {
+ type: "string",
+ enum: [
+ "completionTime",
+ "creationTime",
+ "followUpDate",
+ "dueDate",
+ "priority",
+ ],
+ },
+ order: {
+ type: "string",
+ description: "* `ASC`: Ascending * `DESC`: Descending",
+ enum: ["ASC", "DESC"],
+ },
+ },
+ description: "Sort results by a specific field.",
+ title: "TaskOrderBy",
+ },
+ },
+ searchAfter: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchAfterOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBefore: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBeforeOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ includeVariables: {
+ type: "array",
+ description:
+ "An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ alwaysReturnFullValue: {
+ type: "boolean",
+ description:
+ "Always return the full value of the variable?",
+ default: false,
+ },
+ },
+ title: "IncludeVariable",
+ },
+ },
+ implementation: {
+ type: "string",
+ enum: ["JOB_WORKER", "ZEEBE_USER_TASK"],
+ },
+ priority: {
+ description:
+ "Rules to filter out tasks by their priority. Applicable only for job worker-based user tasks managed by Camunda.",
+ type: "object",
+ properties: {
+ eq: { type: "integer", minimum: 0, maximum: 100 },
+ gte: { type: "integer", minimum: 0, maximum: 100 },
+ gt: { type: "integer", minimum: 0, maximum: 100 },
+ lt: { type: "integer", minimum: 0, maximum: 100 },
+ lte: { type: "integer", minimum: 0, maximum: 100 },
+ },
+ },
+ },
+ description: "Request object to search tasks by provided params.",
+ title: "TaskSearchRequest",
+ },
+ },
+ },
+ }}
+>
-
dueDate object
-
-A range of due dates for the tasks to search for.
-
-
taskVariables object[]
-
-An array of filter clauses specifying the variables to filter for. If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.
-
-
Array [
* `eq`: Equals","enum":["eq"]}}>
]
enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.","items":{"type":"string"}}}>sort object[]
-
-An array of objects specifying the fields to sort the results by.
-
-
Array [
* `DESC`: Descending","enum":["ASC","DESC"]}}>
]
It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>includeVariables object[]
-
-An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.
-
-
Array [
]
priority object
-
-Rules to filter out tasks by their priority. Applicable only for Camunda user tasks.
-
-
-
-On success returned.
-
-
Schema
Array [
variables object[]
-
-An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. Note that a variable's draft value is not returned in `TaskSearchResponse`.
-
-
Array [
draft object
-
-The draft value of the variable.
-
-
]
]
-
-An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request
-
-
diff --git a/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
index 2e474e4b709..d331349c5eb 100644
--- a/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
+++ b/docs/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
@@ -5,47 +5,231 @@ description: "Unassign a task with `taskId`. Returns the task."
sidebar_label: "Unassign a task"
hide_title: true
hide_table_of_contents: true
-api: eJztWG1vIjcQ/isjf7mcugGuTasKVa24HGm5lyQC0pMaRXdmPbC+eO2N7SWHEP+9Gnt3gUATcu3HfsKsZ5558bzZS+b5zLHuNRtzd8tuEibQpVYWXhrNuuxKc+fkTAMHz90t3EufwWdaDsTnFgzRl1Y78BmG/RZLmCnQcmIfCNZlZQUQ4BNWcMtz9GhJ5pJpniPrsojHEiZJZsF9xh4qMs4QBm/ATLdkWbwrpUXBut6WmDCXZphz1l0yvygI2Xkr9YytVjdE7AqjHTra/77ToZ9tIRcaXJmm6BzYYBkKkpIa7VF7oudFoWQazGt/ccS03BVqJl8w9WStJWd4GUVKsavYPjNLLe9KBClQezmVaLetXiWV2w7BIsoddlq8wanUsj6mp6CuHFqgI6QzmFqTB8DXlx/OQTRAAbuwhvx3/k0aVswBKLUY3PyG+wOQPmao4Z6vIxECPwo4skgiBFCozLlC7UncZ7KmVQsZyxw/w1SiEi+jdJMXCv+V/IjwpAaNoB0dYuLggX4sHVoS05aC0O8zA9JBhSHAm90YGPmDbCN0R6S72cfFhVaLOvtQlzmVktNhvzfuv2EJO734cPm+X61756f992F51hvQ4maVsKmx+TtcPK3FEKdoUae4aQoQe7CHFodE8g5MLCocBBbKLFBESBhEU+kP+VEb31Ak4DPpoEruRdgulWrU+BOtk7E0VLpI7XGG9mll5pH1P9MoKsR91OGnE1JRujNj834+QSFw02MTYxRyvaPlwK0FY8VG/6JQOobfKuUsRs0C7WNuqhJ9XYSeHwIVxEb9eTzRdkQOxFa2VfsD7TzXKX67QrJCAPlE6j+Q+EAfj5prf0hIU35Gagpm7pxJZSh9oVlvZb0o8bB6RpiiRBCU9vGs13nfxBTtHnuZYwx9pcz9VXG4gMhxXBbPEZNyLSR9+d2asnAbkri1fLFXUMMDs8C0I0p6zN2+sWFDHvXA54qjovwsaZK6QY7ac79dQho31kX27cXrTx8vhu/6Q5awv/r91/1PV6P+8NO4N3oXKmthpbHSL3bHnHFotXE3lpqmv7eANjM5yzDqPOeqxLDa+Fgzt6AX56GJQjBaLYKpfyFOcA3pyOSdQphLLXOypJOwnH+N61edDvlzykvlWffHDnnES6+IlaCG1QTHVivaOtk3w/U0oLXGUr2phzi4p/bcNI2qevLUyznCEa1l3K46V2x3L1u/TGz7172Act0JQ9snjFRxSbl+VDfdlzDBqbH4yAxZWDNRmH/33FmSFCzdAS2mp6HaAp9xDxYLiw61j0X9j/H4EiIYpEY0LT5aXE/MLTgzFvArp+hM4KTTAakF2YAOOLx4zQUM8a5E519EViI62SY6Nx7OTKlFQ8K1AGeAJsftRvXD95TpOTrHZwfUkh7EjWhhYc1ciiBzYiVOYYN427xAbtK0tJYGfUq/qhY/LbMfQ6Ku9VdXNBgbC8qY27KAI2zNWgmFlTIzqCxxVNk3QjpgNLF88k2x3NT4+lJWR/eUXP1/5P0feY9HXrDWZ0bEi3eahUu6z1iXteev2hRUrr2MsbVq17d5ljCHdl5f40urWJctYwituu32MjPOr7rLwli/YgmbcyupSYS4ob0Y61WhZ8qkXIXP+9opbWzeEnuXA4jS4+Bm7AO4nzs/d/YiEek/oKzDf42TeV/svw0F4r1I4aXBYVrG1nu9ZKkxtxJZ9/omYRPkFu3xLQ2X1zebpCOCjP6pGdaTRiFpHH2oyWmgO55whwJ46TN6L4jZTUUg9GM+51JV7RlGqKbHH7jmMxSQqtLROwxlQPUMQ6PD+8FofDzqj0aDi/P6QaZSaLWtf6Ne5abglHCPCESspj6r0+vtx3GccfTUBPaNzq6k8zDsj8bkzV2f1xR0owW6di6OvTkuXXT+RlmjQdzyQgq1gGaWgknppKbZvBq5KUWV0TMnRZzRQi2l0T0OL3XZ5GmIrBjeZKbrttv39/etlOelFpxu7+QWJVOksaTbvGi9r74kD5iFSV3DLU3437b1NaJdAbk2oc7reySbv4qB7nzO9YaUB69zD/22XNf+b3nIq47X41ffLhSXmpQI5iyrEnFNmsW3BMcS1m3e8Zo6cZNU6X7NlkuK1CurViv6fFeiXcSsqKtDSBchHa0F6065cviISUfD6vXvJex/HdxrQJ1TehHqkirpH0tYiOn6JXJFA3SGXKANSsXNXppi4TfYdl4DKaObcnrZG5/+wVarvwHbGGKv
+api: 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
sidebar_class_name: "patch api-method"
info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a task
+
Unassign a task with `taskId`. Returns the task.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
- )}
-
- );
-}
-function CardCategory({ item }) {
- const href = findFirstCategoryLink(item);
- // Unexpected: categories that don't have a link have been filtered upfront
- if (!href) {
- return null;
- }
- return (
-
- );
-}
-function CardLink({ item }) {
- const icon = isInternalUrl(item.href) ? "📄️" : "🔗";
- const doc = useDocById(item.docId ?? undefined);
- const description = doc ? doc.description : item.description;
- return (
-
- );
-}
-export default function DocCard({ item }) {
- switch (item.type) {
- case "link":
- return ;
- case "category":
- return ;
- default:
- throw new Error(`unknown item type ${JSON.stringify(item)}`);
- }
-}
diff --git a/src/theme/DocCard/index.tsx b/src/theme/DocCard/index.tsx
new file mode 100644
index 00000000000..ff046f0fa87
--- /dev/null
+++ b/src/theme/DocCard/index.tsx
@@ -0,0 +1,130 @@
+// Why is this swizzled?
+// 1. To expand the description to two lines before truncation.
+// Swizzled from version 3.7.0
+// The only modifications from the original component are in the associated styles.module.css.
+
+import React, { type ReactNode } from "react";
+import clsx from "clsx";
+import Link from "@docusaurus/Link";
+import {
+ useDocById,
+ findFirstSidebarItemLink,
+} from "@docusaurus/plugin-content-docs/client";
+import { usePluralForm } from "@docusaurus/theme-common";
+import isInternalUrl from "@docusaurus/isInternalUrl";
+import { translate } from "@docusaurus/Translate";
+
+import type { Props } from "@theme/DocCard";
+import Heading from "@theme/Heading";
+import type {
+ PropSidebarItemCategory,
+ PropSidebarItemLink,
+} from "@docusaurus/plugin-content-docs";
+
+import styles from "./styles.module.css";
+
+function useCategoryItemsPlural() {
+ const { selectMessage } = usePluralForm();
+ return (count: number) =>
+ selectMessage(
+ count,
+ translate(
+ {
+ message: "1 item|{count} items",
+ id: "theme.docs.DocCard.categoryDescription.plurals",
+ description:
+ "The default description for a category card in the generated index about how many items this category includes",
+ },
+ { count }
+ )
+ );
+}
+
+function CardContainer({
+ href,
+ children,
+}: {
+ href: string;
+ children: ReactNode;
+}): ReactNode {
+ return (
+
+ {children}
+
+ );
+}
+
+function CardLayout({
+ href,
+ icon,
+ title,
+ description,
+}: {
+ href: string;
+ icon: ReactNode;
+ title: string;
+ description?: string;
+}): ReactNode {
+ return (
+
+
+ {icon} {title}
+
+ {description && (
+
+ {description}
+
+ )}
+
+ );
+}
+
+function CardCategory({ item }: { item: PropSidebarItemCategory }): ReactNode {
+ const href = findFirstSidebarItemLink(item);
+ const categoryItemsPlural = useCategoryItemsPlural();
+
+ // Unexpected: categories that don't have a link have been filtered upfront
+ if (!href) {
+ return null;
+ }
+
+ return (
+
+ );
+}
+
+function CardLink({ item }: { item: PropSidebarItemLink }): ReactNode {
+ const icon = isInternalUrl(item.href) ? "📄️" : "🔗";
+ const doc = useDocById(item.docId ?? undefined);
+ return (
+
+ );
+}
+
+export default function DocCard({ item }: Props): ReactNode {
+ switch (item.type) {
+ case "link":
+ return ;
+ case "category":
+ return ;
+ default:
+ throw new Error(`unknown item type ${JSON.stringify(item)}`);
+ }
+}
diff --git a/src/theme/DocCard/styles.module.css b/src/theme/DocCard/styles.module.css
index dbc94e507eb..9d06e2db5dc 100644
--- a/src/theme/DocCard/styles.module.css
+++ b/src/theme/DocCard/styles.module.css
@@ -1,7 +1,14 @@
-/*
- Why is this swizzled?
- See the associated DocCard/index.js for details. There are no customizations in this file.
-*/
+/** this is the only class altered during swizzling. **/
+
+.cardDescription {
+ font-size: 0.8rem;
+ overflow: hidden;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+}
+
+/** everything below here is untouched from the original. **/
.cardContainer {
--ifm-link-color: var(--ifm-color-emphasis-800);
@@ -26,16 +33,3 @@
.cardTitle {
font-size: 1.2rem;
}
-
-.cardDescription {
- font-size: 0.8rem;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
-}
-
-.cardContainerBetaBorder {
- border-color: #14d890;
- border-width: 2px;
-}
diff --git a/src/theme/DocItem/Metadata/determineCanonical.js b/src/theme/DocItem/Metadata/determineCanonical.js
index 7e6c8adea71..284f24f6b3e 100644
--- a/src/theme/DocItem/Metadata/determineCanonical.js
+++ b/src/theme/DocItem/Metadata/determineCanonical.js
@@ -12,7 +12,7 @@
* @property {string=} canonicalId
*
* @typedef {object} Metadata
- * @property {string=} unversionedId
+ * @property {string=} id
* @property {string=} permalink
*/
@@ -108,13 +108,13 @@ function determineCanonicalFromId(canonicalId, currentPlugin) {
*/
function determineCanonicalFromDoc(currentDoc, currentPlugin) {
const {
- metadata: { unversionedId, permalink },
+ metadata: { id, permalink },
} = currentDoc;
const match = currentPlugin.versions
.filter((x) => x.name !== "current") // exclude `next`
.flatMap((x) => x.docs)
- .find((doc) => doc.id === unversionedId);
+ .find((doc) => doc.id === id);
if (match) {
if (/(optimize|docs)\/((next|[0-9\.]+)\/)/.test(match.path)) {
diff --git a/src/theme/DocItem/Metadata/determineCanonical.spec.js b/src/theme/DocItem/Metadata/determineCanonical.spec.js
index 6239fe86b8c..7c986ec2896 100644
--- a/src/theme/DocItem/Metadata/determineCanonical.spec.js
+++ b/src/theme/DocItem/Metadata/determineCanonical.spec.js
@@ -185,7 +185,7 @@ describe("determineCanonical", () => {
beforeEach(() => {
currentDoc = aCurrentDoc({
metadata: {
- unversionedId: "components/components-overview",
+ id: "components/components-overview",
},
});
@@ -314,7 +314,7 @@ function aCurrentDoc(specs = {}) {
return {
frontMatter: {},
metadata: {
- unversionedId: "a/doc/id",
+ id: "a/doc/id",
},
...specs,
};
diff --git a/src/theme/DocItem/Metadata/index.js b/src/theme/DocItem/Metadata/index.tsx
similarity index 77%
rename from src/theme/DocItem/Metadata/index.js
rename to src/theme/DocItem/Metadata/index.tsx
index c204a2a4d92..c71ecfe09d4 100644
--- a/src/theme/DocItem/Metadata/index.js
+++ b/src/theme/DocItem/Metadata/index.tsx
@@ -1,24 +1,29 @@
// Why is this swizzled?
// To override the `href` of `link rel=canonical`, so that we are properly
// canonicalizing our content for search engines.
-// Swizzled from version 2.4.1.
+// Swizzled from version 3.7.0.
+
+import React, { type ReactNode } from "react";
+import Metadata from "@theme-original/DocItem/Metadata";
+import type MetadataType from "@theme-original/DocItem/Metadata";
+import type { WrapperProps } from "@docusaurus/types";
-import React from "react";
import Head from "@docusaurus/Head";
import { useAllDocsData } from "@docusaurus/plugin-content-docs/client";
-import { useDoc, useDocsVersion } from "@docusaurus/theme-common/internal";
+import { useDoc, useDocsVersion } from "@docusaurus/plugin-content-docs/client";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
-import Metadata from "@theme-original/DocItem/Metadata";
import determineCanonical from "./determineCanonical";
-export default function MetadataWrapper(props) {
+type Props = WrapperProps;
+
+export default function MetadataWrapper(props: Props): ReactNode {
// Gather some context...
const currentDoc = useDoc();
const currentVersion = useDocsVersion();
const allDocsData = useAllDocsData();
const currentPlugin = allDocsData[currentVersion.pluginId];
const {
- siteConfig: { customFields },
+ siteConfig: { customFields = {} },
} = useDocusaurusContext();
// From the context, identify the proper canonical
diff --git a/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md
index 21c5449ffcb..d78fc5907d8 100644
--- a/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md
+++ b/versioned_docs/version-8.3/apis-tools/tasklist-api/tasklist-api-tutorial.md
@@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit {
logger.log("Tasklist credentials fetched");
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS");
- axiosRef.defaults.headers[
- "Authorization"
- ] = `Bearer ${credentials.access_token}`;
+ axiosRef.defaults.headers["Authorization"] =
+ `Bearer ${credentials.access_token}`;
axiosRef.defaults.headers["Content-Type"] = "application/json";
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds
}
diff --git a/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md b/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md
index 148d7adc91e..aa9479890c4 100644
--- a/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md
+++ b/versioned_docs/version-8.3/components/best-practices/development/writing-good-workers.md
@@ -62,7 +62,7 @@ If performance or efficiency matters in your scenario, there are two rules about
1. Minimize what data you read for your job. In your job client, you can define which process variables you will need in your worker, and only these will be read and transferred, saving resources on the broker as well as network bandwidth.
2. Minimize what data you write on job completion. You should explicitly not transmit the input variables of a job upon completion, which might happen easily if you simply reuse the map of variables you received as input for submitting the result.
-Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](/docs/components/modeler/bpmn//parallel-gateways/), [multiple instance](/docs/components/modeler/bpmn/multi-instance/)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem.
+Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](components/modeler/bpmn/parallel-gateways/parallel-gateways.md), [multiple instance](components/modeler/bpmn/multi-instance/multi-instance.md)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem.
## Scaling workers
diff --git a/versioned_docs/version-8.3/reference/dependencies.md b/versioned_docs/version-8.3/reference/dependencies.md
index 3dd66bdb991..b685c1bc2a4 100644
--- a/versioned_docs/version-8.3/reference/dependencies.md
+++ b/versioned_docs/version-8.3/reference/dependencies.md
@@ -1621,7 +1621,7 @@ All of these libraries are required for core functionality.
- [chart.js@4.4.0](https://github.com/chartjs/Chart.js) (MIT)
- [chartjs-plugin-datalabels@2.2.0](https://github.com/chartjs/chartjs-plugin-datalabels) (MIT)
- [chokidar@3.5.3](https://paulmillr.com) (MIT)
-- [chrome-trace-event@1.0.2](https://github.com:samccone/chrome-trace-event) (MIT)
+- [chrome-trace-event@1.0.2](https://github.com/samccone/chrome-trace-event) (MIT)
- [classnames@2.3.2](https://github.com/JedWatson/classnames) (MIT)
- [clsx@1.2.1](https://lukeed.com) (MIT)
- [clsx@2.0.0](https://lukeed.com) (MIT)
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx
index df90b3567c2..b1d11722cbe 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-id.api.mdx
@@ -5,55 +5,191 @@ description: "Get decision instance by id"
sidebar_label: "Get decision instance by id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV1tv2zYU/isCn7bOiZwuHQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkn6L/vHOpix5a9bE8b+iSS534jPxXM8gfDBnfsCiJhhJKhNJbLCNh9j6kMNLd0GLMBW2zw02MZ1zwFC5rECiZxg0RBJCFxlXG7wnUMJtIiI2k8DGNPLb24tuGJxkiPafgjFxrQgNU59JiJVpByNiiY3WSk2Vgt5AMry3tiNpmSBgzRX/f79HluaJZHERiDiiMlLUhLLDzLEhG5SPwvhviKQztq8QUiSwFqituKygoGduhLjz3CZudcoKkH0Ci8VDrltjr66ZI4MVILhzp6DGSeUuavh+EouMKD4ONwdDucu/Xt+MN48mnsVrNp8Gt4HeL5PeqDNU9yF8tVp+JnLNdcJLnu5sI4KVVXsBRSEPOHF8dUiza98nLBpgPC7qw25K1Pf8M4dt13guEj9qmoKn7SvR9f70rNHevxkl1hQWbhZPx5Pnw3CpAwCufBzXD0Ofh9ehPMiLRXuW1FqYbYx3liT9UO4lBmuTU7PFxrvqEps5Caf9248ljGyG4XBUlW2ISO9u8I56LjaL2e5Pa/4TYmOU/gSPs4kozh64v64kQGqnArFpBc2k6DJxQgkciXXXdZKDE4EXt0RYKxx+80zOAigfSHf3q30dWUmxfORooDzx+6U93e511E2zlMu0kJtFa6zcTFYSZuJc/tSmnxJ8TP0/DKf/X/j/jyMOKbquZA1Tcq1xF4UllvqXIZfxuN8KZrJIbT0NsJ2AMn8A3kg4AERLkWduNg1wK4Bn3mYMgdPikFpkA9CnC7+3349R7sIfjyFhvPwTZEcytFCO8BXCoIwA2Yv77wG5mzRsb4hYhLRs7odQMBc50gf1Eltxz4frFSxpaDIlPaEvOaa8GxEC6jRKsKu+TuEWSJinjijvf9nq/AIwLd/gQgLe6pBSrr5w6KoI3n6t723/Y7NRHrES3bxtjqWVmbdeqpmDs1OZTaFGpGfFXQTXG2r2ImCDU1DxubTBE/zIOzWYseHJiu5dDD3YK3WmoXnUO0r5hYw33d9Opvn+aur4RcKide99fEAXzwpvkCZ4ZCOQxYedxBavxYsQaPy9iLVJolQLdTjQTbpqKV16jFWfFShUBOUWc7SatVTp2wUspWmIpGF1WTW1UjUVAGu+jp6ek84ileePwcDVIS0ElA+E+8dd5G9UlvTzhWkWmlhXJ7X8MSNKCXfq3I+A5CNBiRXZz3z/tVVxmbcrlj6PQIPctZWx4LX62fJRxLWdYOFvV43bH1BdsCzu2A4eEAVWIbVYNyx4piwQ3c6qQs6RjfBe2GfjtXbgpjYWiNc7zkiYEDn9orkn13U/9zfe8d/y/rDKFpXrlhLfJirP4bIuhWErpdAY+xC8mpijDEBsrsjsjBDxmNTXsNvQ/myEsv/k4u91rbae905+d3jsGbq0eQv7TOWdqSf2X5F5kpGoc=
+api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision instance by id
+
Get decision instance by id
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
evaluatedInputs object[]
Array [
]
evaluatedOutputs object[]
Array [
]
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx
index 694a04725a1..b39c63b97e6 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-1.api.mdx
@@ -5,55 +5,154 @@ description: "Get process instance by key"
sidebar_label: "Get process instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt1v2zYQ/1cIPrWdY9ldNhTGMMBL1MJLmhix2z0EwUBLZ5uNRGok5cwT9L/vjvqwYyuB9zjUDxY/7vt+x7uCO7GyfHTPp0ZHYO1EWSdUBPyhx3UGRjip1STmI77YXsH2zyHv8UwYkYIDQ4wFV7jB+0fY4p1UuMyEW+M6BhsZmZEEPERuppcsq/Qw2SjqcQN/5dIAKnEmhx630RpSwUcFd9uMREvlYAUGSZfapMJVRz+f87J8IHabaWXBEsf7wYA+z1XP8oh0In+kUZRyRCKyLJGR9y/4ZomuONasF98gcuSzoWg4WWkhX08xz/OR6q8YLFnpeJXpx/fEtMhS1eQj3uOxzki18mKFQTeuTjfD039M9NONjqFJ8un8SG/cpXDQaQ2o+MU75Oy6IaY8JeCNL+aTryEeXNx+nl6H8/CS1uObi/Aalw+7GF7CUipJ+Trdbky2UO7VIB4A38vmkTRRngjz5uD2rRcqXUKSDkumxF+Pn3chcKI2IpExI6iDdS8jEX1dJJD+8F8RSWHO7Yn4StFqserOV1uXXZfVwdHFXkxCY7RpIzE8jsQXJXK31kb+gwX/LAzvgnf/f4/Pjz2+q3IOlH2rcxMBU9qxpc5V/H0A4aeukhhPJ2zPYQae4TuIBz2KEOVGuq3vnwvAd8ic+Z5yj+9dgSHQjxL87uGwjX4Cd9RD2WLLqvaLbXmtqVuvwIeCGvGIB5thUPOcNTw2KJCl5GSM2TS9PDcJ0hdVcMtREBRrbV05KjJtHBFvhJECE+EjSndVYpciTyiSiY5E4o8P7Z6vgdEFTQs0BzjcEwQq7X3/HqOO5+I+DD4MOiUR6QtSdsDYyVk7l3XKqYg7JfnZoknUjOgqp5vktMkWmbzywa8HodtpeDeeh2ezcDab3N40Q1HNR+19L+GtlNpEbxDtKyLeUH9ssPr7H3OPK6mW2rPX+Lr1wxqwab7AmiFXjh3WTPhBCD9OboAJFbNIp1kC9DodoopWrBGLtcJSje1XE7I9pzM6JySstXZVS6fSRdFkVgUkcsoiip6envqRSPHBE31USEFAIwGHNqKt43Zdn/QOmGMd2ZZbar8PDCwBu3cEQS3IBiR108xZfNgf9AcVqqxLhdpT9HoJPYtZmx4Hf7sgSwSmsqwNLOryuuebIW+nlF2B4dmIRCKMqkK550WxEBa+mKQs6Rj7gvFFv6srX4WxtLTGOl6KxMKRTe0Tyd/c1bPzW/byfN3pQgNetfVVneS0w6VHpf8vafZag4gRhmRVdTNGBGVuj+dojqa6ad+hT+Ecaanl7wXzANteeqc9v/zmCdhcP4L6tbXO0ZbsK8t/AczAXW8=
+api: eJzlVktv20YQ/ivEnJKUNuXELQLeDJsOVLu2YCnJwRCK1XJkbUzuMrtDuQLB/17M8mFZog31WOQicR/z+uabnamAxIOD+B4m1kh0bqwdCS0R5iGYAq0gZfQ4hRgWmyvc/H0CIRTCihwJLQtWoEWOEMMjbiAEpSGGQtAKQkjRSasK1gAxXOEmMMugaOwEqjMUgsWfpbKYQky2xBCcXGEuIK6ANgWrVprwAS2EsDQ2F9Rs/XEKdT1ncVcY7dCxxMfRiP9emp6Wkm1CCNJoQk18RRRFpqSPL/rh+F61b9ksfqAkjtkyGqQaKxzrIe55OTb9Da1TjY03hT59ZKFFkesuH+mWjCOr9INXKyxqujrcDX//MjNPNybFLsmHyzsSli4E4aA3qNNXzxwNnrBQmTPxzs5n428JhHB++9fkOpklF/x9dnOeXCcXMH/G8AKXSivO1+F+E2qh6U0Qd4jvdYNUVpaZsO92Tt97pYoy1rRbMnVd1yGcDjFwrNciU2nAVEdHrzOxsGaRYf7bf2Ukw1y6A/mVo3PiYThffV0OHTYbewdbmCTWGtsj8WkfiUtjFypNUb/E4EP04f8f7ul+uHdNwpFT70xpJQbaULA0pU5/DRb8PlQPZ5NxsBVwgF7gF8CDX0SUpVW08c1zgcKiPfIN5X5ehxVIYx4V+tV8t4d+QdproMFiEzS9N0daGW7VD+ih4C4cQ7Q+iVqZo07GRdUjbmpgZ+y6a+SlzSCGqgG3jqOoWhlHdVwVxhJfXgurxCJrsOWzJrFLUWaMZGakyPz2rt+zFQZ8wKMCDwG0woAp0Fg/9o+xsTvqPo8+jwY18dVXtDwT41nPiqgY1NNcHtTkB4suUVO+1wTdJadPtijUlQe/nYJuJ8nd2Sw5mibT6fj2ppuIWjnu7VsJ77W0LnqHeN1cgu72ZcfVP7/PPK+UXhov3vLr1k9qGEzKRaYkh7IfsAmEn4ICIUmtMRA6DaTJiwz5ddplFX8FndqlsUFutCLDzPaSZE3JTFgZQ00/59IV0uewIRIH5eIoenp6OpYiL3UqjqXJGYRMSdTO49jidt3uhDvCqZGul1bGryOLS7SoJUatIhex1nU3ZMHJ8eh41LDKUS70lqG3S+gFZn16CP+hqMiE0qzTO1i15XUP6xPoR5TnAoMQYlY5D9tCuYeqWgiHX21W17z9s0Tri/65rnwVpsrxdwrxUmQO93zqn0h4d9cOzu+D14frwRA68uqNr+qs5BWEzVzrf2sevFYoUrTeq+bkTEosaEtmb4jmuunfoS/JDEIQJQPVg7nDba990J+qam7MzCPquu7dI16zg3X9L7FMXXI=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process instance by key
+
Get process instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx
index 540a4cc736b..67598cdd152 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-2.api.mdx
@@ -5,55 +5,145 @@ description: "Get process definition by key"
sidebar_label: "Get process definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVltv0zAU/iuWn7h0TTcGQhVCGqKgAWLTWsTDNCE3OW3MEjvYTkeJ8t85x07SWxjwiHhpY/tcv/MdH1fciaXl42t+aXQM1r6GhVTSSa34zYDrAoygxXnCx3y+fg/rLyd8wAthRA4ODKlWXOECz29hjWdS4WchXIrfCdjYyMKbG3PUZnrBiuCJJRtXA27gWykNoBtnShhwG6eQCz6uuFsXZFwqB0swKLrQJhcubD075XV9Q+q20MqCJY2T0Yj+dp1Py5i8on6s0ZRyJCKKIpOxzzD6akmuOvSs518hdpS1ITycDF4o2z8Jb9DA04laZ6Ra0sEKAZTB671mnpyQ9LzIVVMlKkePPUxLKNd7SKfSZbR1WOm6pvPTPtjO1UpkMmFUH7Du1/AhOPMM8sd/C6N1wpX2DyHIMW6x7AdTKjSl4v7DsHEfKhNjtOmQOD5E4pMSpUu1kT+QpTswPIoe/fsZnx5mfBVqDlR9q0sTA1PasYUuVfJ/EOFpX0ucXZ6zrYQZeIX/AA/ctBCXRrq1v/bnIAyYI38RXt/Ugwoh0LcS/Opm//Z/C67n6mfzNQtzA+dJqmnMLMGDQRNkzKPVcdRoHW20bFShUs0pILNqx1BpMtSoAsD1OIqqVFtXj6tCG0fCK2GkwGJ4VOksFHchyozQzHQsMr+9H/ssBUYHdJPTCHO4JhoE70MCknzsmns+ej7qtUSiv7CyIcfGTupc0WsnCPda8kOxLdaU5ELSbYG6gotCvvfwNzP84nJydTabHE0n0+n5xcd2njd6NIW2it5ZaUL0AdE6CPFW+k3L13efZ55bUi20V284duHfGcAuyzn2DaVymLBmwk9w/HNyBUyohMU6LzKgG6plVkt2+mKtWewXlmukjiZ2e01ndElMSLV2xPjQvmiawgpEoqQssuju7m4YixwvPTFEhwQCBgn42iDZBrcPzc5gTznRse20pfbryMACDGCUUWPIRjvPAX48HA1HgVXW5UJtOfpdG+2g1hXIwXcXFZnAYtZNiFXTYtd8dRwun/0mw90xGUUqhWa55lU1FxY+mayuaRvng/HNv+kt34mJtPSN3bwQmYWDqLqrkj+4ah5+D9l9z8PeNFoKq7Xv7aykFX56bvrfGm8lnoJIkIwUVzg5Qx4Vbkvn4BlI3dPdR28nM5Sl4b8F6B7DvfXeeF688gJspm9Bveyic7Sk+Or6J5i58us=
+api: eJzlVt1v2zYQ/1eIe1o7xXLSbCj0FmBukWVYgtjDHgKjoKhzzEYiVfLkzBD0vxdHSnZsq1n3OPTFFnnfv/tiCyQfPWQPcOesQu9/w5U2mrQ1sEzA1ugkH64LyCDf3uD20wUkUEsnKyR0LNqCkRVCBk+4hQS0gQxqSWtIoECvnK6DugxucCvsStTRkij2phJw+KXRDgvIyDWYgFdrrCRkLdC2ZuXaED6igwRW1lWS4tWvl9B1Sxb3tTUePUtcTKf8d2h83ii2CgkoawgNMYus61KrEGH62TNfe2rZ5p9REUftGA/S0QpH+z3uJT08O1ZPTptHJmzQeR2tvqrm3QVz53Vl+ixxOkb0ERppaJTIVE0lX51muuuYfjkG27XZyFIXgvODnr4NX+1sXmL183+F0ZOkxn8nBBV6Lx/HwdTGkzRqnBgvXkNl5px1OyTenSLxwbpcFwWaQwzepm///+FenoZ7HxOOnHpvG6dQGEtiZRtT/BhV8MtYP1zdXYsXAQsMAj8AHl0CHlXjNG3DzM9ROnRnYQo+LLukBWXtk8ZwWh6P/o9II3Nf5FsRl0aFtLa8Yx4xgMHrI4N0c572Umd7KZ+2T7jtgB1ym2EHNa6EDNoIcJelabu2nrqsra0jZt5Ip2VeRnyZFpO7kk3JaJZWyTJcH/u+WKNgAo9x3l+0RsFlEK1PGEi2caju/fT9dFQTs35Dy7449nrWRPWonsg8qilsxCFZc+aLQQ8J2iVc1vomwN8v8Nu72f3VYnY2n83n17d/Dsu8l+MV9CLpOy29i8EhPkcmGLg/DPX6+9+LUFvarGwQ72vsNjwyUNw1eakVh3IasBUyrG8hFekNCmkKoWxVl8gTaqisodj5SwxqV9aJyhpNlqs7SJKzDVfC2lriio/tK1XIYSwkDspnafr8/DxRsmpMISfKVgxCqRUaH3Dscfujv0mOhAur/E5a23BOHa7QoVGY9op8evAWgPPJdDKNVeWpkuaFoX9rowPUdgki/IfSupTasNbgYtu32ANszuPwOW4ySCBjpcukb5YHaNtcevzLlV3H118adKH5970VOrHQnr8LyFay9Hji1W5Uwk/3/avvjXjtbTgaxlDCZht6u2z4BEl8loXfbtklsEZZoAt+RcqVUljTC5mTNyB3z24efZwtIAHZMFg7QI8qPGgf9adtI8fCPqHpup17xGd2sOu+AlAs8u4=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition by key
+
Get process definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx
index e72644d3ef4..74a73c39cd5 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-3.api.mdx
@@ -5,52 +5,168 @@ description: "Get incident by key"
sidebar_label: "Get incident by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/iuCPm1dGjltNhTGMMCN2UyNIxt+SYsFgUHL55iJTKok5cwT9N93R73EidW1+Tj0iy0e7/2e413uW35r/O61H8pYLEFa/+bIVyloboWS4dLv+ovdBezmb/0jP+Wab8CCJoncl3jA+3vY4Z2Q+Jlyu8bvJZhYi5Q0IBGlPbXyRG3gyNfwJRMaULnVGRz5Jl7Dhvvd3Le7lFQKaeEWNLKulN5wW5J+O/WL4obETaqkAUMSbzod+ntqcpLFMRiD8rFCVWgUWXiaJiJ2cQV3hvjyQ8tqcQcx+ZhqyoIVpRWK8Xvcc3Jkug8rIQXZunipaCiN5TKG7xcsWRpWY7WQt8gJMttQbWfRZMTOwg8h6yN1Fl1Ew08RfoXD+WVvNAqj8zkbj4djJH0cvp9Hw/mYTcchmyDhbBj1w2k4jBoW9nk67p1N51e9wYw11LPeYMD6czZglyyaNuRZ9Gcv6rsboszZFd4i/ZJNJr1zNp+Ef6GOz2eM9Z1zlZo+ujvZN/pIILO9PYduMAEbTBu/bckB3sUaXM2nYtPOgNm2/5k+DDa8YkgYs8lwcOX8HDFMS3TurN+pxQtqBZJLS4114ArdCpsQqenGoiDyaRvIQ7nliVh61E1g7NfBjrhaJLD55aWgp8Rk5ptxvX3jf6MEokJ062U7ePeTwbRWusnEyWEmZpJndq20+AfflCdpeBW8+v9HfHoY8bisOVD1jcp0DJ5U1lupTC5/DCD82tYSvVHo7QXsgRP4AfJBzxjEmRZ250bzArgG/dqNrWt8o3JMgboX4E43zyf0OdhmPHuLnVdOdJz0a0ULwC24FNBs7/rB9iSoeU2QI2vhk3G9rdeCTCfIl5fJLLpBkK+VsUU3T5W2xLzlWnBMvMsg3ZWFXPEsocwlKuaJIz/3c7oGjy5o8aCVwuKZSl5aP3YzFG08Vfeu867TqolYv6LlEQiPetbWpq16SuZWTW5dqQszIb4y6LoYTXF5Ki5c0qudajhi496UvZ7gmMRRV+9XlRx6uF/gRkvlonOIziWTX3N/qLH58dPU4UjIlXLiFZ6Gbu8Db5QtsEcolMOAlcfdboV/VmzB43LpxWqTJkCvUbXCeDWw6cur1WJveBuFW5EiJDtJq1VGSFgrZcuhS62KqsmtEkgUlEEUPTw8HMd8gw8cP0aDlAR0EnAPJN4qb4OKcvRMeKli00gL5c6BhhVoQC+DSpEJSCsBuQz25Lhz3ClRZeyGyz1D7S3zJFdNWSz8bYM04VjConIsr9rp2t+euOJWDYXfXVKFsCkb49rP8wU3MNNJURAZ333tmvqxj1zXLYWhb+zXFU8MHPjSPIH+T+Nq/f7ZO1zNW12uQSp3rnuTjE746dDnfgvag9bAlwg38qa86SFSUrsnc7CCU38078w5o82QRvle8p5h2Glv9ef3947Bm6p7kH803lk6kn9F8S9GVljK
+api: eJzlVt1v2zYQ/1eEe9o6NUqabCj05tlMpiaRDFtJiwWBQUvnmIlEqiSVzhD0vw9HycqH3bV9HPpii8f7/N0d7xqw/M5AeAORzESO0sKtD6pCza1QMsohhOXmHDeLY/Ch4pqXaFGTRAOSlwghPOAGfBASQqi4XYMPOZpMi4o0QAjnuPHUyhNbAz5o/FwLjTmEVtfog8nWWHIIG7CbilQKafEONfiwUrrktiP9cQJte0viplLSoCGJd4eH9PfS5LzOMjQGfMiUtGQ0bIBXVSEyF1dwb4iv2bWslveYkY+VJhSs6KxQjN/jnpMj0xNcCSnI1vmPikbSWC4z/H7BjmVgNVYLeQc+oKxLyu1VPJ+ycXQasQn4cBWfx8nHGHyIksXlaDqN4rMFm82SGfjwIflzESeLGUtnEZuDD+MknkRplMQDC/uUzkbjdHE9urhiA3U8urhgkwW7YJcsTgfyVfzXKJ64G6Is2DWLU/Dhks3nozO2mEd/swX7NGZs4pzr1UzYOJo/N/pEILOjFw6dJrPLRZyki9PkKp7AbetDicbwuz2gtD5kGl0RpKLcz2Ast/+J52icRteMoojOZqPUOT5j8+Ti2n1OWTyJ4jPnyL1a/kAeUXJpqel2vKJbYQsiDZ3atkQ+2dcAkXzkhcg96jQ09uuNUGm1LLD87UcbgjCqzTfjOn4H38iG6Kt97+X+wn4OBtNa6QGJ410kTpVeijxH+RKDN8Gb/3+4J7vhzrqEI6XeqFpn6EllvZWqZf5zVMHv+/phNI28ZwF76AR+AjzoOcOs1sJu3MxeIteo37p5dnPb+g1kSj0IdKfb16P7DO0wt73lxutGfYl2rWgzuEMHAQ39EILHo2DLa4LmATctkHH9uN0Xal1ACE0HZhsGQbNWxrZhUyltifmRa8GXRYcl3XWJXPG6IOQKlfHCkV/7ma7RowvaSGjXsGv0KOWd9QM3XJV+pe794fvDvZqI9StangrhSc/a2mqvno55rya3x2wTMye+LuhtMobk8kqcO9D7ZSuZMpo4b+dsTuNwu3j1cq3/IsGDlt5F5xCdOybYcp9ua/PDx9TVkZAr5cT7ekrcQojetF4WIqNQdgNWHndLl8czKx7R4zL3MlVWBdJr1O823raw6cvbql0p7ZVKCquokp2k1aqmSlgrZbvhS63KM5fDrpAoKBMGwZcvXw4yXtYy5weZKgmEQmQojcOxx+2ip/ivhHOVmUFaKHcONK5Qo8ww6BWZgLRSIXfBHh0cHhx2VWVsyeUzQ/tb5gVWQ1os/mODquBCki7nWNO30w08Hrnk9g0FPoSk6tbvG+MGmmbJDV7pom2J/LlG7Zr6qY9c1+XC0HcO4YoXBnd8GZ5A+GXW7+W/ers7+16Xt0UqN657i5pO4HfrsvttaQlaI89RO2+6m1GWYWWfyezs5tQfwztzxmhl5DUBM4D3qoad9r3+NE3HkaoHlG07uGfpTA627b+EYGBZ
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get incident by key
+
-
+
Get incident by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx
index b16abfc1b01..11af5e52995 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-4.api.mdx
@@ -5,55 +5,184 @@ description: "Get flow node instance by key"
sidebar_label: "Get flow node instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlV21v2zYQ/isCP21dEiddNhTGMEC2lVSLI3uSnKwIAoOW6JiNTGoU5cwT9N93R73EjpU2/Tj0i83jvR+fI08F0fQhI/07cpHIJyFj5opMUxExcn9EZMoU1VwKNyZ9sthese38nByRlCq6Zpop1CyIAAL4j2wLPC5gmVK9gnXMskjxFC3AJmhbcmkta0cWbzwdEcX+zrli4EWrnB2RLFqxNSX9guhtira50OyBKRBdSrWmutr69ZyU5T2qZ6kUGctQ4/3pKf7t+w7yKGJZBvqRBFNCowhN04RHJsHe5wzlikPPcvGZRRqTVlgOzSsvmOxbwjN66Lqp69W3Ko7YkguOQb5dFVwpPaKa7chnWnHxgFwm4ld5eDoewiD+ItszR94hwEXEY6jv22OtRF6awijzNQJz5gVTZ+heuM4Idqf+ZOgEAayC2WD+TDk3jhfO9/eC0PbDueEA5Xqh4187I9cOnfnQDocfu1nhR39y27IGk5k3sv1P7Ybjjdp14Pg37hBU7OAKSN8ZOu5NS86A3ayvbW9mjxuq/nP+Go5nAWpcguNb+5MJ5XBvavv2eOyMd7aqdAd24Ix2dgPnz5njQUAX48ktep2NQ3fuelAI3B1MRig1BGNzexi6N26I9AD8eVCxuT8bt8EHQ9+dhi2FWTdpeVfe5NYj9xXOunD0fHjGjYNOJ9fTsROaM8Riu56NxP0OZHbsLKRMGBUGHkxQoTvhiFyuE9y6aGDb3ClliezzrrvAFRua8NjCS4dl+vU7ARpwkbD1T996N2BV8uyr8P/5Pea3hhanD681U51NF7O7b3aL4iglVVuJs8NKzATN9Uoq/i9cvXtleNd79//P+PwwY786c4ann8lcRcwSUltLmYv4+wDCL10tYU9daydhixmF76AeeIexKFdcb80os2BUMXVsXvc7uJwKKIF85MxQ9y8nmkumzThj7c0z1mJrVbMQzEgriaPTAzPFwKmoT3qbs14zBB03SlmvAJ2SYDxq00xWuUpAoajqW/Z7vWIlM132i1QqjcIbqjiFszBFRV51tkuaJ1jMREY0MdsvQw9XzEIGzm44lWmgEQWV9xMzf4CPfXMfTj+cdlpC0VesPGPj2c5K67TTTiXcackMes1ZBShXJd2cT3veNOVXpvr1WDqZOj68NccBPHHuxGtG1FoPItw989ZKHaIJyLxIRog00hcNXP+4DQ20uFhKo15DbGJGZ2ZN8wW0DaZymLC0qJlK4U/zDbOoiK1IrtOE4QVVj38trHBlNWahXay1hLFQIriNplYyRySspNTVI4zdC6YxrApImFQGKHp6ejqJ6BruPHoCDrEIECSDCRpl67qN652jF8qxjLJWm0tD9xRbMsUgyl5tKOuhVQRylezZyenJaYWqTK+p2HH0tS7aq1p7QJr9o3tpQrmZEkyIRd1hd2RzRqpZdb/HYLOPNgFJVa/ckaJY0IzNVFKWuA2vgzKt/9xaphFjnuEaenlJk4wdBNVelOQHv/6W+dH6wgdPZxINgMXWdHaSIwVLg0zzW+K8tGI0BihiWBXHBhSlekfn4MMGe6e9jC4dnF3x5d+duPbxbax3xvPbwAhYoXxk4vc2Oo0kxleW/wHJp8lb
+api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get flow node instance by key
+
Get flow node instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx
index 81943d341bf..e191bf600e4 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-5.api.mdx
@@ -5,52 +5,147 @@ description: "Get decision requirements by key"
sidebar_label: "Get decision requirements by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/lcIPq2dazldOhRGMSDDvMLr0ASxiz0EwUBLZ4uNRGrkyakn6H/fHSk5dqx02ePQF1sk7+d33/HYSFQbL6c38hdItdfWXMNftXZQgkEvb0fSVuAU0sE8k1O52n2A3Z9v5EhWyqkSEBxrN9LQgs7vYEdn2tBnpTCn7wx86nTFFmiTtIVdi6xzJtyht5HsluQJXQ0j6dMcSiWnjcRdxfa1QdiAI9G1daXCuPXjuWzbW1b3lTUePGu8nkz479j/ok5T8OwqtWTKIIuoqip0GpJMPnuWa04929VnSJETdwwJ6uhFZwcyHp02G9mOAg7PiZrxOcV9Pmw0YjxwsKUq6Bj3Vz3+8JqlCSVbuxQ+PmWOcFEGB4PgU40Fbw0Spm1Z5HwI+rnZqkJnoeTg8ekSEMCrAsrv/2spPCqs/TNBKIkFajOcvzZkyqRPgBM2vgbMzDnr9kicnSLxyagac+v038T0IxheJi///xmfn2Z8HWsOXP1IPmEsirWtTfZtEOHNUEtcXM3FQcICgsI3gAdtekhrp3EXpscKlAP3KtyaN7ftqCEI7J2GsLp9PETeAw5PELHaiTiBaDLllgfWBgIePIumMtmeJZnLkoaEWskxuG0/wGpXkEQTMW2nSdLk1mM7bSrrkIW3ymlF+Acg+SzWc63qggEsbKqKsP043GUOgg/4+ubhh7TmykfvY8aOfRybezt5Oxm0xKJPWHngw4OdHLEatBOFBy2FWdrXZ8FyMem+Jvsaq0p/CHB30//yanZ9sZy9WswWi/nlx/4l0OlRhId13lvpQgwB8ToKyV76156iv/2xDHTSZm2Dekery/BCAXFVr6hVOJXThK1QYfDTH+otCGUykdqyKoAvJWqXcNjzm79Eb5ZaRJTWaLRM6KCJztbMhNxaZJLHjiXTHFYkEifliUX39/fjVJV0z6kxOWQQKEigRwrLdrj93u2MHilnNvV7bW3DOnGwBgcUZdIZ8snRG0CejSfjSWSVx1KZA0fP6Jwj4PY1QviCSVUoqmfbRdl0XXUjt2es5/gmn7IRYk/sjxvZNCvl4ZMr2pa3aQq40OIP7RSaL9Oev6lh16rwcBLF/kKU33XPjeyF+Je35GDkPXHNLnR0UfNKdu+18NvS9SNzUBlRkEOLJxfEngoPdE7ejNwz+1vn/WxJsjzlDzB8xOtgfTCedz8HAbG0d2B+2keHvOT42vYfI/AEkw==
+api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision requirements by key
+
-
+
Get decision requirements by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx
index 259ddb8d279..05b9fbacd72 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key-6.api.mdx
@@ -5,55 +5,150 @@ description: "Get decision definition by key"
sidebar_label: "Get decision definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/lcIPq2dYzldVhTGMCBF3cLL0ASx2z0EwUBLZ4uNRGok5cwT9L/vjpRkOVbS5rHoiy2S9/Pjd7yruBMby6c3/B3E0kqt3sFaKunwi9+OuC7ACFrMEz7lq90F7P5+zUe8EEbk4MCQbsUVLvD8DnZ4JhV+FsKl+J2AjY0svLkpR22m1yxpXOFH52vEDfxTSgPox5kSRtzGKeSCTyvudgVZl8rBBgyKrrXJhQtbr894Xd+Sui20smBJ49VkQn+H3hdlHIO1qB9rNKUciYiiyGTsU4y+WJKrjj3r1ReIHaVtCBAngxeZ9GSsM1JteD3yKHxL1IROAGI+bCigOnCwRdxliPVJL7+86nu5DgDnmLl9xOOQ6MWz0+lrf3wshyHhz8/KC69QKDeYCZ1Kl9HWAK/rmgTOhjgyV1uRyYQRGcG6x7mCTFhlkP/8XM5YJ1xpvzHDHOkqNsP4SYWmVDx8GDaegmVmjDYdEqfHSHxSonSpNvI/LMkDGF5GL7//jM+OM74Odw50+1aXJgamtGNrXarkxyDCr0MlcX41Z72EGXiFHwAP3LQQl0a6nW9yKxAGzIl/3m9u61GFEOg7CX51+7DXfQA31OjYasdCm8T2mWrqqhvwaFDDnPJoexq1aid7NRtVqFVzCsls27ZbmgxVqgBxPY2iKtXW1dOq0MaR8FYYKfA6PK50Fq53LcqM8Mx0LDK//TD6ZQqMDqgFUct2uCYiBO9jgpJ8HJp7M3kzGbREoo9Y2dNjbyd1rhi0E4QHLfkZoL2uBcmFpNsr6q5cFPLC49/MLJdXs+vz5exkMVss5pcf2/ml0cMI+9feWWlC9AHROgjxVvp9y9g//lp6dkm11l69Ydmln6uAXZUrrBxK5ThhzYQfWPDPyS0woRIW67zIgN4orB5/2NKdvlhrFiuG5Rqpo4nfXtMZXRITUq0dcT4UMJqmsAKRKCmLLLq/vx/HIsdnT4zRIYGAQQIOVyTb4PZnszN6oJzo2HbaUvt1ZGANBjDKqDFko4M5hp+OJ+NJYJV1uVA9R18tpAPYuhty8K+LikzgbdZNjFVTZDd8e8r3E0i/zHB7SlaRTKFcbnhVrYSFTyara9rGHmH8A7CvLl+LibT0jQW9FpmFo7C655L/1Iw8yQv25EA8mEjLYrXz5Z2VtOLN0Ol/a3yaeAoiQT5SYOHkHKlUuJ7O0eBLBdS9SR9mS5SlCaAH6QOSe+uD8fz21guwpb4D9XsXnaMlxVfX/wNER0k8
+api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision definition by key
+
Get decision definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx
index 7c269251964..4b10307eeb6 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/by-key.api.mdx
@@ -5,52 +5,147 @@ description: "Get variable by key"
sidebar_label: "Get variable by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/lcIPm2dazldNhTGMCADvMLrsASxuz0EeaCls8VGIjXy5NQT9L/vjpQUO1a37HHoiy2S9/O773hsJKqdl/M7+btyWm0KkPcTaStwCrU1y0zO5ebwHg5yIivlVAkIjuUbaWhBpw/hTBv6rBTm9J2BT52uWJ82SVfYrdj35ifSwZ+1dkCm0dUwkT7NoVRy3kg8VGxSG4QdOBLdWlcqjFvfX8q2vWd1X1njwbPGm9mM/05druo0Be9JP7VkyiCLqKoqdBqySj56lmvOPdvNR0iRc3WMAerohXN8SXhBj10vjUdlUnj/YkWfksOXi0fwB1GPTpsdH+xVUY+fENiG8mfch9ONtQUoE47BKIPLbESXTzUWvDWwpG15+3IM/qWhIHQmuM7g8fNlILDIVPnNfy0HYYu1/1ekvn3DeZVUDrUbh0R3ZRrHK2z8ExgL56wbkLg4R+KDUTXm1um/CPUTGF4lr/7/GV+eZ3wbaw5cfW9rl4IwFsXW1ib7Mojw3VhLXN0sxVHCAoLCF4AH32yQ1k7jIQyNDSgH7nW4UO/u20lDENgHDWF1/3x2vAMcBofYHEScNTSDcsuDaQcBAp46c5nsL5Je1icNibaSnbt9P7BqV5BcE8Fs50nS5NZjO28q65CFB3XOjs9iIbeqLhi5wqaqCNvP41znIPiAb2UedkhrLnn0Pg2DgXycmns7ezsbtcSin7HyRIQnOzliNWonCo9aCoO0L8yK5WLSfTGG4qpKx+HfTfvrm8Xt1XrxerVYrZbXv/WTv9OjCI8LPFjpQgwBhbEThGQv/XPPzV/+WAceabO1Qb3j03V4j4C4qTfUI5zKecJWqDD16Q/1HoQymUhtWRXAt1E3l0VPbP4SvVnqDVFao9Eyk4MmOlszE3JrkdkdW5VMc1iRSJyUJxY9Pj5OU1XSBaem5JBBoCCBXigs2+H2a7czeaac2dQP2tqGdeJgCw4oyqQz5JMw2onIMdmL6Ww6i6zyWCpz5Gi8ZU6wGsqC8AmTqlA6PABCYE3XTndyf3HSERM5Z1NEm9gYd7JpNsrDB1e0LW/Tve9CUz9pha7LtOdv6tetKjycxTJcgfKr2+5h+LU4fzSOhtyT1Bzk8PKR9BnYF35bumNkDiojunE08eSKmFLhkc7Z45D7Y7hn3i3WJMuj/PjpdMrhYH00nh9+CgJibR/A/DhEh7zk+Nr2b8xV7kM=
+api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get variable by key
+
-
+
Get variable by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx
index 1f21f907c39..5784ed2b74b 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/delete.api.mdx
@@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key"
sidebar_label: "Delete process instance and all dependant data by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVktv4zYQ/isET92tYznbtFgYRYG06wLuLpog9mIPQQ60NLa4kUmVHDl1Bf33zpCSYltOX7diL7ZIzvPjNzOsJaqNl9N7eetsCt7PjUdlUpAPI2lLcAq1NfNMTmUGBSDIkSyVU1v6dKxXS0MLOn6EPZ1pQ5+lwpy+M/Cp0yUboM33sBd2LcroRujOz0g6+K3SDsgHugpG0qc5bJWc1hL3JZvWBmEDjkTX1m0Vxq3vrmTTPLC6L63x4FnjzWTCf8euF1XKPkk/tWTKIIuosix0GtJLPnuWq4ee7eozpMg5OwYDdfSyJWtqAweCHp02G9mMWpiyfxb+SKLGgoV+ypXZwAIVVp4O+OjqXC5zs1OFzgSDBh5fzokiXhWw/frf5uZjCH8X/jdvONm/AqK/4XOHcWNwcADIzDnreiQuh0h8NKrC3Dr9B6F9BMPr5PX/P+OrYcZ38c6Bb9/byqUgjEWxtpXJvgwifHuuJK5v5+IgYQFB4QvAgzY9pJXTuA+deAXKgbvgTjy9f2hGNUFgHzWE1cNpQ34XGtWgIQtlMqGKQmRQgsmUQZEpVGK1F7HFU+vP7clAoH4/lcnuMmmtXXTWfFKTViM5UrfrRkblCpKvI/LNNEnq3HpspnVpHbLwTjmt6JYC3HwWb32tqoJhLmyqirB9mtQyB8EHPJR43CCtmR/R+5gRZh/H5t5O3k7OWmLRF6w8s+bZTo5YnrUThc9aCiOsu8UFy8Wku5vrmaBK/T7g387bm9vZ3fVydrGYLRbzm1+72dvqUYSHbOittCGGgHgdhWQn/XNH5F8+LQPptFnboN6S7yY8CUDcVisqKE5lmLAVKsxb+kO9i4RK7bYMc3HAN/4SnVkqJLG1RqNl2gdNdLZiJuTWIpdCrGsyzWFFInFSnlj09PQ0TtWWuqEak0MGgYIEehuwbIvbh3ZndKKc2dT32tqGdeJgDQ4oyqQ15BO2ykSOyV6OJ+NJZJXHrTIHjv5rfR2h2V8cwu+YlIWiS27a0Ou28O7l7jJ2q+PSo70pmySCxRK6l3W9Uh4+uqJpeJvGiQu94rniQn1m2vM3FflaFR4GMfWdVX511z7eXomXH3hnU+hobfah3ouKV/QZ+Bp+G2phMgeVEUE5qnhyTdwq8UBn8JDjiuqb1LvZh9lyRuL8WDjA84T4wcHZkL7/MQiIpX0E80MfIPKSQ2yaPwFUtd1k
+api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc=
sidebar_class_name: "delete api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Delete process instance and all dependant data by key
-
+
Delete process instance and all dependant data by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx
index 55670f12467..18d87cf3669 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/get-statistics.api.mdx
@@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id"
sidebar_label: "Get flow node statistic by process instance id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV99P5DYQ/lcsP/Wuy2a50uq0OlWiEneiVx2I5dQHxIM3md31kdipPVm6jfK/d8ZOQiBBFbxVxwPE9vz8/I1nqCWqrZfLG3npbArenxuPyqQgb2fSluAUamvOM7mUW8AV0tKjTr2cyVI5VQCCY/VaGlqQ1B0c6Ewb+iwV7ug7A586XbId2vwMB2E3oozehO7czaSDvyrtgFyhq2AmfbqDQsllLfFQsmltELbgSHRjXaEwbv1yIpvmltV9aY0HzxrvFgv+89j1qkrZ51xcAVbOeOH7dARZFLgDsdV7MKPoZmLrbFVCJtYHscntvTCWbFMkqaWgDLIzVZa5TgNeyTfPHutxDso5FQBCKPxg366/QYqMqmPUUcc8VIp6r/HAF9DLenTabEfIXlP4OmNwOZE+ypDa/U6nu7BPMFU5eqEcCLXdOtgqJMybWfQFk3iPHaFFlQtTFWtw7DIq94D5URgTt0bosWwO2SudduovdatNqjO6Nf9Kv71+T5v/SNMWZQ74+jw7/ZclSp5RY87ePpLYF5IaFHDDPzN5MlUp52avcuISlyR4fJ7nxNZ1DsWPz/L9GV5z5VXT8A+z+Okdw1dQKaotjCsgXGX7fkwdxo3RwQCXM+eskx0Sx2MkvhpV4c46/Q/d3iMY3iZv//8Zn4wzvop3Dnz73lYuBeIXEtMrk30fRPh5qiROL8/FIGEBQeE7wIM2PaSVoy4U+vwaqHW4I+7zy5vbZlYTBPZOQ1jdPn3OPgEOWlHfcLmPPm2y1Lwk50Tl1o4bYcigGWIpk/1x0sof9W9gUlMQTeKHQ4kHt+8mksrlpFpH6JtlktQ767FZ1qV12JDwXjmt6JoC3nwWr32jqEOSZm5TlYftqUeaD3jm6V5iJkj0PmeI2cdjc+8X7xeTllj0GSsPtHmws0MsJ+1E4UlLYULqrnHFcjHp7uoe5pNSfw4TXDvOXVyeXZ1enx2tzlar84sv3WjX6lGEQzr0VtoQQ0C8jkKyk/7YMfn3P68D67TZ2KDesu8iDJ4gLqs1VRSnMk7Y0swR+NOOHspkg0b5lFz8JTqz3LULazRa5n3QRJrvmAk7azEOV1zYZJrDikTipDyx6P7+fp6qgp5DNSeHDAIFCTR6smyL2x/tzuyJcmZT32trG9aJgw04oCiT1pBP2CoTOSZ7PF/MF5FVHgtlBo5eXGCPYOxvDOFvTMpc0e02bcx1W3w3cn8c36nH5Ud7yzjtDyqQaBYL6UbW9Vp5+OrypuFt6iouPBkPdReqNNOev6nkNyr3MAqwf2DlD1ftfwhvxPP/RUzm05HbHELV5xWv6DOwNvxu6CWTO1AZ0ZSjiienxLASBzqjGZ/rqn+yPp1dkywPDANkn3A/WJ+M58NvQUBc2zswv/bRIS85vqb5F3sPuO0=
+api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Get flow node statistic by process instance id
-
+
Get flow node statistic by process instance id
-## Request
-
-
Path Parameters
-
-Success. Returns statistics for the given process instance, grouped by flow nodes
-
-
Schema
Array [
]
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx
index 9ea6e3d454d..cabe55b339c 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Operate Public API
+
To access active and completed process instances in Operate for monitoring and troubleshooting
-
- Authentication
-
+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t
>
+
-
+
Get decision requirements as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx
index 99132022d14..0ab292f3e47 100644
--- a/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/operate-api/specifications/xml-by-key.api.mdx
@@ -5,59 +5,131 @@ description: "Get process definition as XML by key"
sidebar_label: "Get process definition as XML by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/isEP3WZYzltNgTCUCDFvCBrtgSxgw0I8oGWzhYbiVRJyokn6L/vjpTkN23t16JfbL7cPff23FE1d2JlefzI74xOwNpfYSmVdFIr/jTiugQjaHOd8pi/FvmHzUfY8BEvhREFODCkW3OFGxR49ndS4bIULsN1CjYxsvR4MUddppesDKZYurU14gY+V9IA2nGmghG3SQaF4HHN3aYkcKkcrMCg6FKbQrhw9PM5b5onUrelVhYsabydTOhv3/isSsgq6icaoZTz2PDqIoyL1kcWrTNSrRC/aUb8fAjzWq1FLlNGzoN1+9iiLHOZ+PRFGPIih+LHT5b0BmzpxSdICAAlMelOhkisE66yX8zCu7ccXSwwPLGCgQioKAilkuHLcHAcN95Il9PR1Bht+kycHWfiQYnKZdrIf7CEe2k4iU6+/YjPjyO+DzUHqr7VlUmAKe3YUlcq/T6I8NNQS1zeXbOdgBl4he8gH3hoIamMdBs/ExcgDJhTmonx41MzqjEF+lmC3z0djsYrcANzkQnL/v7jhi02LMxWnLmZplm8Ap8TmrIxj9ZnUat8ulW2UY1KjR9v5JtZd+O6MjjweB1y3cRRVGfauiauS21cg8JrYaTAuvgE012o81JUOSU214nI/fFhGPMMGF3Qg0Cj3uGeGBGsjymnZGMf7mJyMRlEItH/QNnyZIuTOVcO4gThQST/eHR1m5FcCLqrVV97Ucrw9LVv3e3d9P5yPj2dTWez69s/u3ev1UMPd+vfo7QueodoH4R4J/1bR93f/5p7mkm11F69pdutf5CB3VULbCEK5ThgzYR/6fDPyTUwoVKW6KLMgYZVR7KO97RiHSy2Dis00kcT0b2mM7oiJmRaOyJ/6GSEJrcCkSgoiyx6eXkZJ6LA+SfGaJCSgE4Cvsok2+btpj0ZHSinOrG9ttR+HxlYggH0MmqBbESoROQQ7Nl4Mp4EVllXCLVj6Cs7ai95fZ38d0GZC6xp03pat932yNdnYRwd9huexgGUWg55FTrnkdf1Qlh4MHnT0DG+G8YPhW2j+bZMpaU1tvdS5BaOfOtHKH9z334t/cD+75tqMJiOz2rjGz2vaIdLT1T/2+C04hmIFJlJfoWbSyRV6XZ0+m8naqF+MF1N5yhDHwM76TyguUcd9OOXD16AzfUzqPe9V4625FfT/AsOj6m5
+api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA==
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition as XML by key
+
Get process definition as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Unauthorized
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
index ddc276e8766..22d0bbbfa21 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
@@ -5,55 +5,282 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu
sidebar_label: "Assign a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a task
+
Assign a task with `taskId` to `assignee` or the active user. Returns the task.
-## Request
+
-
Path Parameters
Body
+
-When using REST API with JWT authentication token following request body parameters may be used.
+
-
-
-On success returned
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.
-
-
Schema
-
-An error is returned when user doesn't have the permission to assign another user to this task.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "An error is returned when user doesn't have the permission to assign another user to this task.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
index b8d1f2fd781..e67e4158f0a 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
@@ -5,51 +5,289 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th
sidebar_label: "Complete a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a task
+
Complete a task with `taskId` and optional `variables`. Returns the task.
-## Request
+
-
Path Parameters
Body
variables object[]
+
-Variables to update or add to task during the task completion.
+
-
Array [
]
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "User has no permission to access the task (Self-managed only).",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
index 1bc09cf2927..a5e7c09c591 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
@@ -5,40 +5,143 @@ description: "Get the form details by `formId` and `processDefinitionKey` requir
sidebar_label: "Get a form"
hide_title: true
hide_table_of_contents: true
-api: eJzdV9tuGzcQ/RWCL7XR1SWpEQR6Uxs7VZMmgSW3QB0DonZHEmOK3JBcKYKgf+8MuStprbWt+rFPtpbDuRyeORxuuBczx3u3/MrYBb9LeAYutTL30mje4+/BMz8HNsVVloEXUjk2WbMxfRhkYyZ0xsa5NSk49w6mUkva+QHWY2bheyEtZOx7AXbNcmHFos1G6G28BOvQbHy4xKRjJsQVKrjF34XD7UarNSWA8XNl1viFgjt2JqcMFrlfJ0x6jOathCW4kO9czubgPCsDnbd5wk0OVpD/QYaVzcCHkhMeooNHS8RhwzX+wPVYIH8ICKU/eMfMdAcLuZa0lAs/x/+rsnnP2wIS7tI5LATvbbhf5+TZYaJ6xrfbZBesCcCj0NcwBQs6BeZNiF7uQlyqbbtcAq4vTKbErLH0cq1WP/tLKPnoMT2R0lQo15ST1B5mYNGWPAgfP725wCzvaL/LjXbgaMfrbpf+1BP9rJkr0gANsqKwGjLKIjXoV3uyF3muZBrI0PnmaNPmOA0z+QapJ4JYoo6XMaTMjuFrgqrQEktmMsOYcirBVqDBYgJZVuLDVtLPJQKqd+fZ5tukmRHPxq1R5Jge7AwX8ZAzRmewFApTo6zG1Anto5DU35i4ys5DSl56BafVHkzrTbJ9nHxNHgI25YmFzRUrT6DJU8QN9ZC06EIphsBThqlwIVuh64eTsNVcYiFBXnIkHiYT9aXG8Z/czj2dJK5b5lJE2koTTxOrENoPTmROtCaZEc6ZVAqPgYgndTglHpVC3Tr0OjFGgTju3YHOiO+ojqs5hASPqiBQsuiQYRdrg9TQ7B+ACZBq4+oOu9C4dA0gtUShfPIckG0SmIpA4aq5LrsYF2jpontx3Md99GIt5iL3jUz56/2VVENlkCWsqW+ScJ1UdwuqlMshpZbM9ufmQsFTU+intAK9TxQsfv6vmuG88IV7lru/vD46uD5xKthimeKIh7+PRl9Y9I7dku16LuJWSWWbIeQMfohFriBhF90uOq0IIdhX/qvI2DVqAl6ZX3ncTGYXD8w+IURXBNHeiJB1htHVg8e4QOjF7ASR6LO4EItCsJaokxRkgpf4lB0Y1ysK5iZNC2tJ1KkLNJaPivd8zMvIpdKe3dxgg9F9pYy5L3J2BrM28ViZGSvrcOd14gYPgbGhVj835SQRpgi8/Xu8s3zVCfdeZxMpucU1B3ZZjReFVWi2iczZ9jqdzdw4v+1tcmM9GS9RNgSyLNCF1mJjhEbDncqkQoXPTdJBC6TwFWr9LwMWo8dbBWPU3b3tvu02eiLTR7zsWb/3M/c+b/QTjRs9hevcAR6m9OsATopHIRHpW1yYgLBgW/d0793eHZoOyWXEp9qwO3uRyzg7lcPMqD/88HEwHLWGl8Ph4POnahopNz7M+LfwuTURNHiKAlPGyzs2f5hPacYRS5yC6YRIH4egpq0/hUa2ZCxVhaM5MqB0mP8uvRKmAErQ62DEK+urSgz++HsUmCf11ITtJQNHwt0riYPt9eVwRGgeY15ZSGonCyJbt7xp4SQdwD9QM5oRLOKVYU2SlGFB48CkcFLT2FAqKXWlMnrmsEFpHscexAiOOiXeDaVaijQwK9KbynTI7dVq1U7FAhVDtFOzIFgwOpDu93bz5sfyS/Jgc2ZSt9stTfjdsdWE0ykduU5tOuDLV5Hozi+EPohCLxkRromHkG32av+/eu+UlPPww3dyJZD22xLiTalWt4RWvIIc/u2Vbx5stag7t3yzoVa4sWq7pc9xhqdOzaSjFthP8Y9CenZd4nLOTnzBNCYe+uixhxKOsgVt4fSMOT21l79onkhx/3zaZ3W3l/WXo9f89GzMpBJDXQOnyrA85u0dWs5RIFCAKKm42MeHU+4Pth29laia3eX3/pKE6l9fSKq9
+api: eJzdV1FvGzcM/iuEXppgFzvtgqHwW7YkndeuLWJnAxYEiHyifWpk6SLxnBrG/feB0p3ti53W6+OeDJ8okvr08SO1EiRnQQxuxZXzc3GXCYUh97ok7awYiHdIQAXC1Pk5KCSpTYDJEu75w1Ddg7QK7kvvcgzhAqfaat75Hpf34PGx0h4VPFbol1BKL+c9GBcI9wv0QTt7v70EOoCLcaWJbnWAKqACZ82SEwCFpXFLVDGbAEd6CjgvaZmBJvBIXuMCQ8y30LMCA0ET6LgnMuFK9JL9D5UYiBlSPHImYnQk9IzDSlg5RzEQ6YAiE5pxKCUV4jk4fJThBbjpGiIO0x5bDMhXmImQFziXYrAStCzZcyCv7UzUdbYOtg/ANnSEaCf2NU7Ro80RyMXwjQtQax8/mkyD2bfj89kbww4A8Jc0+sU766Y0lSbsy0lbwhl6kcVLkJQ+/XIm6vqO94fS2YCBd7w5PeWfbm6fLIQqj2h4pMpbVBw4d5bQEtvLsjQ6j2Tofwm8abWbhpt8wZyYIJ6pQzqF1GoXvn3oVFY/VghaoSU91ehbnHA+QaUaSOBJU6EtOLu+wp6os/2M+G7cDit2GQFHHvmSFfAdLKRBS5zVPVdCbyck1/dUo1HHMSXSZPCws0fTbmHUL5Nvn4eITXNjcXPLyn00eZmaMX1WElsZA9rGhHIZYnLSdu8ig6dCG0xqUnoMaCnJSYfFr8LaPV8cFegh5Gil1y4y/DlrM0FopaXhgcxJ1iwtMgSXa0moIk+6cOpwgQYJt71OnDMo7Y7boVXMdwzwVGDMeOdYjJJKDsF5sI7AWfgHcYKs2jpswIyFy21A4VRWhrLvIdtjgWkJFFvNdVPFoq556ez0bLeOzy2g985zyLaQOX+7aUlrVA5pSEwDRzB1lf2WIJTeTQzOf/qvwhBIUhUOIOg5EycuARVyh2y/j8efITmD3Kl1HSUsWvnrwZXzgF/lvDSYwdnpKej1JUt49atUcI2PFQZ6lbay0VnX6KMjuGI41iYMX3CQusc2kX9+w5ybYwhydoAKnENaSCcsvVtoFWNOvMYpbBl3jxfNXZ5X3rNqM81tIGnzA2JeJrI09nBzM7yIPcg491CVcIS9WS9S1bgZNCcJx11uRh+RlPG0VLhmWIiDAhViIPqL1/3YzfqrRLpaZCKgX7QTROWNGIhV4k096PdXhQtUD1al88TGC+m1nJhEG15L3I+1JAbCuFya+HmfOvACi3iL2/nnIaToqXE4/8zd29O3p3s9sekLXjac3/gpiMq9fpLxXk+xYwfMK69pGcHJnXvQKAa3d5mYoPToTx64td3ebZuO2GXCp92wvn1Z6jQedTP5LdqdTCTPjLKigvtuKuk4WvJEIhdSG0aepW2EZnryp7RyhgpyUwUeAZn2zRw0Ph+9/zAcjU9Gl6PR8NPHdiBqEqq7+a/Ta2CKoERJjkaitb5qa+qPv8eRedpOXdzeMHAsw4PRgeD6cjRmNHcxby00F5RHqZYn5E6qkMDf0jIeA7wstTJL0CwUc+74kypoy5NBI5Ncl8bZWdAKeeT2QDI8BK6UJP+NVso8MivRm48ZBv3+09NTL5fzyirZy92cYTE6R5b2wXqk/NB8yZ5tVi4P693axf993w4x/cZR6HcGALF4nYgeaC7tVhR+rMjYF55Dttpo/f/qSdNQjvAr9UsjtWVgIsSrRq1uGa2k5EFkYtA8a+6yRnduxWrFJXPjTV3z5zTuc6UqHbhUNoP6i5AeXTe4HMOB75K9icc6eukttJCm4i2CXyqHp/bj75RvpLh5IW2yutvI+o+jt/9FuTeTVgxtB5w2w+aa67s6EwVKhT4mlRbP8xxL2tq28xzi06yb37tLFqp/Ab96n4Y=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a form
+
-
+
Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version).
-## Request
+
-
Path Parameters
Query Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the form with the formId, processDefinitionKey, and optionally specified version is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
index b54a0fce3df..8be7ef70aed 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
@@ -5,40 +5,223 @@ description: "Get one task by id. Returns task or error when task does not exist
sidebar_label: "Get a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a task
+
-
+
Get one task by id. Returns task or error when task does not exist.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
index 7fa58a63366..568113514d3 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
@@ -5,47 +5,118 @@ description: "Get the variable details by variable id."
sidebar_label: "Get a variable"
hide_title: true
hide_table_of_contents: true
-api: eJyVVtty2zYQ/RUMnpKpbkn9kNGb0tipmjTJWHI6U8czgcilhBgCWACUouHw37MLkBRlya78JBE4ezs4u0DJvVg6Pr7lX4WVYqHA8bseT8ElVuZeGs3H/D145lfANjWEpeCFVI4tdvs1mQ54j5scrCCzaYqGS/CN27c7XOnxXFixBg+WYpZc4wfiGicBchh7jnGn75jJDjKgUJK2c+FX+N/Cf4W0gDG9LaDHXbKCteDjkvtdThGct1IveVXdEdjlRjusFPdfj0b0cxj0s2auSBJwjlnwhdUQikuM9qA94UWeK5mESoc/HBmVx0HN4gcknqq2xIuXMaRMjxM7t+yqV3N2jgNCnnSxEao400dWKMUC/qSn1IrMHxNIlmHrMdPe/3D0jAwfSw6z89Irsn5HqTRK/Bpc0y5oof30zNOIaDoU4ZxJpPCQsq30qyfiNiGva8XhJm1fjC6OKZtoBtYay+RedGy7An3Yem3E7/um+U422niWmUI/pVTkGA3Wvz1Xsc4LX7gOTqL7JVgEZsauhY9Lv78+Yg6rqrGYtPBYWY7th6m5UMSf8/kXFr2zxKTtMUYmmkYdsCv8gp9inSvosYvRCJ2mVBQ4Jtg3/lak7BpHADj/jUdjgl08gH1Ciq6Ioj1I6JQ5w4wOal5jx4vlGbqbsLgRi0KyNjINQRZWQsY64MOKAtwkSWEtjZSKphiWr5MzYl5GddR4dnODUkT2mTLmvsjZC1gOcBc/l6yuw708lGPwEDQYavUrUw/pMJhxkI75cPNq2AjLDcu9xirEOLCbZnIXViG8jAqqxsNhuTLOV+MyN9YTuPVCldFelHwmCkVyUSYRKiyfajba6E6vyZcpi9EDaRTj0N2b0ZvRSU8EfcTLXv17Pyvv85N+Ivikp3CpOMBDlX4XyEnwSCQyfosbCxAWbP8eaOuuC52Ry8hPY9BqQOTyA1o0057PJ7MPH6ezeX92OZtNP39q7r/a8GHGf4Tl/kI4HCKiwJS1r4cAzQqj1Y6JDd7hYabg4gxU1v9baFRNyhJVOLqiA0vd/Nv0apoCKfQdQbxBXzVD4a9/5kGBUmcmmNdKnAt3r6Tz7PpyNic2jzlvEJLayoJId31v+oWL5HemGvOGWeQrxZokTYg1FssWhZOaLnBsTrrIqTuV0UuHjcrQC/YiRnDUMf8CLKCZmiIJyorypjIdanu73Q4SscbJIQaJWRMtGB1ooo/bR8zHeqX3wDg1iWutpQnfQwsZWMA+HtaO3DBczMh6rH/zKgrd+bXQnSj0FhPtdfCQtnI/+Z/zaqtP1cNPP8yVQGVVdRVlPRhuKaFuU/f4uPNqQ1XHFr/lZUmqu7GqqmgZh7LdxU5ok6YWSaWj/ziAMqEcPFHHi+v6cfeSPf4YPFlB00t6x9s3D8e/QcvdR2d1h+gVagw1TMlFwARfgLnvmB49+qib2zn6/pK0/guNJuUD
+api: eJyVVttu2zgQ/ZUBX9piZcvt5qHQm7tJut522yJ2usAGBkpLI4sNTSrkyKkh6N8XQ0m+xE7XfbIlnjlz0Znh1ILk0ovkTnyVTsmFRi/mkcjQp06VpKwRiXiPBFQgrDsIZEhSaQ+Lze6dyoYiErZEJ9lskolELJF62nebSSYiUUonV0jo2GctjFyhSERPEiCKXZaSCvE0jlmBMLkEmx9Ew24dPlTKYSYSchVGwqcFrqRIakGbkj14csosRdPMGexLazx6Pn8zGvHPoaPPBnyVpug9OKTKGQzJpdYQGmK8LEut0pBp/N2zUX3s1C6+Y0qcteO6kGpdquw4sPNSFU3Ulewce0aeYlhLXZ1JkVdaQ8CfIsqczOn/833GX9Oc8hg4n3EZCVKkmeKSUb20vgb+JhKERhqanFneFs1Vlt7bVEnCDB4VFU/ybHZue483nYJE0/DxxejiWENjA+icdaB2IoLHAs1hK20dfts1wTe2MZYgt5X5mfJKZxcaV7/9qgI9Sar8Hk4ZwiW6ozqNDXRHQIUkcFg69GjIh5j/nM2+QEsGqc22X6xNvO+zIVxbB/hDrkqNEVyMRqBMxjmgBwkv3skMbvChQk8vWlMGXRyCPlmCay7HFiJNBt6CNVyg3LqVpDaT39+wGFbovVyeofMxtAdthqWza5UFnwunMIc98GF6AW7TtHKOx0PDk8uTNOkZPq9aZXR4uL2dXEJuHWhr76sSXuJwOYxAGdB2CV0m/tXwQIyBIygwZEuF7UZuGLNUiETE69dxLysf1zuFNSISHt26n8OV0yIRdaufJonjurCemqQurSMGb1k4Nz5rBZ/LSnPVtU2lDq9PdRof7A+j8ZcJtN5D2djHId3b0dvRSSaGPsOy0/6OpyAqT/K04JNM4YrwmFZO0SYUJ7X2XqFI7uaRWKB06Ab3yEfzfeiUKdv69AZbFchSfcDNUSR/BNxgIT1mICsq0FDX2jwBrNEbkGupdJgU1sAUdT74Wxq5xAxSXXm+SFn+3T06G08/fJxMZ4Pp1XQ6+fypv027gJrD+LfhdWUKReHnFiR69HXfW3/9MwsKVCa3wbxT4kz6e608wc3VdMbVPK55j1DcWA5lthmQHVS+Lf7eTAOy4GSpMr0BxQNjhYZgUXll+DouneVrmftTW7P0KkOoPI8n6e89d8y/iAvsZ6ZMg7JaeXOaPonjx8fHYSpXlcnkMLUrLotWKfI8T7YrycfuTfTEOLOp31orG55jhzk6NCnGHZGPw0WLzrf5r1+3Qve0kmbPC29Wcv+COyhbvZv7v7KDdV+V8AfFpZbKsO+QRd0NhjsOaL+pI5Hs7WDzqGvxO1HXrM5bp5uGXz9U6DZtJ2yD5hbJlOf/mUhyqT3+JI+XN92q9gqeX+dOZtD3ktmI7Q4jRCSClvdXyGbeRKJAmaELwbWAcZpiSXumRyscd/N2jr6/Yq3/B/Aq1EE=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a variable
+
Get the variable details by variable id.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
draft object
-
-The draft value of the variable.
-
-
-
-An error is returned when the variable with the `variableId` is not found.
-
-
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
"
+description: "This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
"
sidebar_label: "Save draft variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Save draft variables
+
-This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
-
-## Request
-
-
Path Parameters
Body
required
variables object[]
-
-Variables to update or add to the task.
-
-
Array [
]
-
-On success returned.
-
-
-
-An error is returned when the task is not active (not in the `CREATED` state). An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
-
-An error is returned if an unexpected error occurs while persisting draft task variables.
-
-
Schema
+This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
+
+
+
+
+
+
+
+An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "500": {
+ description:
+ "An error is returned if an unexpected error occurs while persisting draft task variables.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
index 3b3b3a713f5..05d37a8a59d 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
@@ -5,51 +5,190 @@ description: "This method returns a list of task variables for the specified `ta
sidebar_label: "Search task variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search task variables
+
This method returns a list of task variables for the specified `taskId` and `variableName`. If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned.
-## Request
+
-
Path Parameters
Body
includeVariables object[]
+
-An array of variable names that should be included in the response.
+
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
draft object
-
-The draft value of the variable.
-
-
]
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
index 689a774a8b7..d74819a2278 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
@@ -1,75 +1,483 @@
---
id: search-tasks
title: "Search tasks"
-description: "Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
"
+description: "Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
"
sidebar_label: "Search tasks"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: eJztG2tvGzfyrxD8kuROlpw0aVNdLoEfcqs2jXOWkgA1jJraHUlsuOSG5FpRDf33wwy5D71i2cm1B6T+YmmXnBnO+0Fdcy8mjnfP+VC49/yixVNwiZW5l0bzLj8DX1jtmJ8CU9J5ZsbMC/cenwjPnPDSjefMgbDJlFn4UIDzLBdWZK79bGQ7z58V6vkzJZ/3x0xoBlnu52xk0jmTjuXWXMkU0hYTSkW4wgKzhBXS9rOOkrT7VKs5MxoQ/+V5QHcw9mBbrPHl1PY+FEKVzw5hbCwsf4tLLi5Lmg0d1bGscJ6NgOUWHGjPpC6PE6noFOo5b3GTgxW4pZ/yLg9AkHeOt3jccGjSOe9e88RoD9rjR5HnSia0r/O7Q9Zec5dMIRP4yc9z4F1uRr9D4nmL5xaxeAmO1nnhobHMeSv1hK+KajgFRktJRlMI/GzzFgddZCjio7PewbB3zFv86PSX1y978fPBq6PeS/p4ctDHDxeLFhfOyYmGtIF3ZIwCodcQH1io8bFy4wteQ9mB+ndTgxpR7mbe1DCXQLkGLGGtmG9kRLkaYUa1QXATeQW6eknMkR4ytxt3dwW6WLQ4En4MY6llqSs3c0D4e8HSDl//8oqNlZkxbVKg4ydCpzIVHn6wpshvhvYDETXBxUiu1KyCEJ46suf2OuybGXzgmQKBzmCVCRHyJxHuzPLPQ7NoHuyNA7srzwoHdg00PVxnGML9HH4h2PVzNJB9AWbdiAM5lVuTgHO1xv4M85uRnsEYLOgE0FwjCJZWMNh9C1pkkDL4UMgrodCvmjFDd/mfAuy8vYa2n7KxBJU+ID7H133tvNAJ3J0mGSHsTFGJsqKHyBETGMg/mt5Mag8TsGtU4LI6VuJGdj+FsSiUZ/9mT/YfoGjHxmbCByjfPEIMY6OUmb3Jj5c9/pbAMLYmu5khAy+sZyR0K/SE+BJjHwJAtcCXe15mwAJJzBReSXTDUjMHCQnzSfvbUrHOTo7YN9988z3ydyxVpXD9wSl7+u3+Q4xDOhU2XTplhQVP6s3NlPd0uplub/4SqhdrRhcpM2OWFkAEOSSmEQ4bzDYWAXvpFZ4ZRXwilQeL7EgL+FvmX5nMcfFbYaUYqR2ymgPN6AUiHhMMlihROHDM5ZDI8VzqCRFxVcJEQuJSJITS8f44OGhMunHxB/R6MeHGrEbN60PMpjKZUmpeYsI0dh4A/WhmcIX5t8SsRWa5sV5oj/u08RDqAz+VLpKA1GWQTIWWLmPSEZAU6nRvZux7Bh8TVTh5BWrOZtJPmbeFToSHtD5Wmw0RbAZCByj1gc2YCaaEnYBlDl0wVhPaeJaYLBdejhREsDVhLSZ0SnCE91if0NkLR0ltxjKB7HHouKVmUoskKSxl2ZZJjXAV+JqPuHBjXrnFnjEa7ZZ94spSfcsTU5S8EqrYEQYtXQPC3k1Bb9OisCeKObFFIoVCBmVCai8wpzDaSedBJ1FkPw1OX4Vdjt13YKVQ8g8qfSo7CWz7yAJTHHMFKlpI3R6gPBhoV9ioReFAjllApKiE1uRWCo9aEozWQ0q8CNWZ2SHZG0YyhJXOaFZuLGVfUloxiTTkH+wSPlx2GdWQrlFawQd+QWl/tHRMKA7ntXXTO9BC+356O1sf0i7WP26acyjtgtyyQnm5R8CTeWlYoBEv2nhZlJlEkhlF9Ycob4nGV6NoVt//IkhyzFLpSmhoNlTdg49Z8kQbC+knMlU8ujPW3+rUlWIsKyXlYsHBGuvpUTQ5NprfwuoIziYdKeUZ7VoaPcQw0OKJBdH4upSo1eEbK2dj012KjX+wy4PB0WWXHbgEdCr1pNSw4x49P4byRYOug8ERb3FcEfRtJewjU2qGMFEKOQmca8Yi1NBTJPVwHkRUt1FulNQbF1x20BQmMMGVmtQrYG+zg1KS0REEQ56aQqXYZUlMjppHyQiK8m1YhZLXyw2MsIacRmEt5utVsymcE5PrGNs8C3ofquiD1/1VImGlf5VKC4knL4LyrLAymYL2wTpGc3pc9qrigVrBkCwgh33ZrsCjoK6SDtxkE2t9q6+X78aS5wHkQrP18+fJIXQHv0IJ5BYSSOEvY/nXq/sl5/9K5Zc6UUUKdyhDiiiPGKEx747zgSpzxIx1TQoRIxVsMX7nRjtgM0xmKI2maE8ZDrF4GHJ1UCnWImbmYkuLyiyFNR+VCxa8lXAFdcyr64JN+U8QSZnslOQsC/rPTeSFmom5CyOXk0KptyuJ/dYGPO0rlY7ypEKpzcn+C9pNjSjeHQvloJm29pfVIagIZkIZaC8Cuu1J00+nh7+9Oz37uXfGW/zXXu+w99ubQe/st+HB4OdN6cpZHBcFjjZrfRLNaF7re5woreQvA1oewfDFAlGU+kRCebS/j/+W0Z5qrDeoL1gNmjDDu+W0prSPHfVD7jACQO0otPxQQG37tumZSE3upmnV9ttPJrDLTS1S1j+uXSMNKepmb7Nh++pOFMbNocMe0+3jnUZfVAfNhKtdJ+2HdFu/9xJP027m9JfNvnOd/d8Zf+wL3ETBUpmxRMPuozPSGgcW0XRkitBn26dplQ4MPmOseNepYh12bw40q8HcNGK41N4EFi65gMsQe4NXwQpew0eP8TW3cCVN4Zbj8U2x0Z1I6/wuDpiNlZiQA5tSFSF8I4pj8LLOlxGmTClCKd8ObX+b3X64UWHA7RWcXQx6DUz/OLTOUsiVmWOShCBZP0gcv+AxsJFWrih7AcHH0TRfF0pVZLwF65bDxbZRyRoxV2HrF6NoedDy7WMeZGts1stGkKY7Dbn7rkYMcVtsEklHYngRibMQKKO1n2LTnzpzC/5mw7zt8n87cJM3eMC1edsSPWXLbDc3VfWxtuZ77c2zlk/ALHv8Sy3+7SOOLQO8TyAIO/aK/DZobjuxp2bn6px8FdUnXOEtB97L6EK2fgtsV3caipTA77nmqIAuDtWFQN30lHpDAGmv1kOXy/eR2KtqtCEqqPccS60Y+5hwR7fULCyWEIX09PIWpcVnp45LVcb/w8QhuGDKBIblgGcHJ3xsYpl9SQEdZgThEkcQNIogFWgMjAi1bVRDL4KTq/fucLGCxfWrhyA9UwW02UuZSR9HkPKPcDrSiJtF+zcnb+DkWtFITrlhbmsMaYxbcVkwu9KgA6nNkrd8s2yeX7zy3VS2VqiocH28qVY90AysNTRqqTwKdUoyE8ZjmrpXsXCuRjOOiczoyZe6K4lOcP1i5PaiObdmpCD7512uOhZuh6TxAEex9Cp4YwuRvKDVPw6Hr1kAxhKTVloSeFm2CNrsxFgGHwXKucUe7+8zqVM8A7aM2L1DkbIYGO6Frbjo8fKiV8azE1PotFqC40tnGJbEm+74ZOCcmOxkL+FFOGFshSDOkZWAY/xq8fLxaLlJqM4IU9EyG9vh+kVQtjJ7e/MGK35jmTLmfZGz+9CetFuoAsrgOJ9O4h60lyyKYJRanYGfGrwpmxtSmFz4Ke/yztXDDtVgnaBwHJvC9oqSi/NrXljFu/w6qM2i2+lcT43zi+413jJY8JUUAd8F04l9La5MItQ0YFx3H/iiGduwaRuwhyQ4DitrcE/3n+5vhIRLt0CpVb6GM/U+31xg0+KNkBaLC+RNUljp58ScxJj3Enj3/KLFRyAs2L33mKifXzSXDhBk4E+5oU6mcomp/SolR7RubySwtSsKP8U8Ilh0uPKq5kxcCamou2s0G4Aa7/0itJhAyvDiBnoe1PqQY3B0fy/7g+HeoDcY9E9fYcqDiCJBi2X6K/Iim4gpFMRoES9Xn5Qm9dO7ISkeepmz+up1Lxh04+p0o0dR32v2toBmm6U2icZV4/Py6cWmxlm9ZfV67rY3KyBXLqhu2BUT7uamzXVjvXdTEdd4W11i3F8vV8LtMv5o/9Hjvf3v9h59P3z4pPvkYffR0/b+dw9/5eEO1/b3y9XVF4C2ckfqvOyz1+eJGVT9oL4Cgrcy0CQaFy+afAyXEs6r2wDrQ/84yqepe7Ctxox8CdSGWe76+3LGuO3Nxq3rE5oNTNgyOQj9/Yv1TKaZsFB8GIereY0khaY5Z73BEN3RutMqV2CXkVkQ6XzPmz28OYPeq5ELUEtO5DJVc1aRwUaFkxobBVFZMa4poydOpvFucpgBSM1+BRhB2aAXCbnmEB/QT7hupzObzdqJyAqdCuyo4omUTABzq2oww1/GJ62VzalJXLVbGvresWVPoxMBuQ7VPWVTi189DJHC+UzoBpZBY4CxyrTGD0L+/l3N2u9qou/38NF3ciWkRgaTqK5j0nCOXA8uwfHSctBEQvw/59fXGLreWLVY4GOaJYYwWaYLFCRbfAqCDPv8mlPk4UdBMHtDJKL2KWtzoEWr3HGQJJD7T669aGQ/r08HQwxg8ZdBmUlxjxUz/NWQmPEuJ89FLMMF9OyaK6EnBSWLPMDEv/8CHTTA1A==
sidebar_class_name: "post api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search tasks
+
-
+
-Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
+Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request
+
-
Body
followUpDate object
+
-A range of follow-up dates for the tasks to search for.
+If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ value: {
+ type: "string",
+ description:
+ "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.",
+ },
+ operator: {
+ type: "string",
+ description:
+ "The comparison operator to use for the variable. * `eq`: Equals",
+ enum: ["eq"],
+ },
+ },
+ title: "TaskByVariables",
+ },
+ },
+ tenantIds: {
+ type: "array",
+ description:
+ "An array of Tenant IDs to filter tasks. When multi-tenancy is enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.",
+ items: { type: "string" },
+ },
+ sort: {
+ type: "array",
+ description:
+ "An array of objects specifying the fields to sort the results by.",
+ items: {
+ type: "object",
+ properties: {
+ field: {
+ type: "string",
+ enum: [
+ "completionTime",
+ "creationTime",
+ "followUpDate",
+ "dueDate",
+ ],
+ },
+ order: {
+ type: "string",
+ description: "* `ASC`: Ascending * `DESC`: Descending",
+ enum: ["ASC", "DESC"],
+ },
+ },
+ description: "Sort results by a specific field.",
+ title: "TaskOrderBy",
+ },
+ },
+ searchAfter: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchAfterOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBefore: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBeforeOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ includeVariables: {
+ type: "array",
+ description:
+ "An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ alwaysReturnFullValue: {
+ type: "boolean",
+ description:
+ "Always return the full value of the variable?",
+ default: false,
+ },
+ },
+ title: "IncludeVariable",
+ },
+ },
+ implementation: {
+ type: "string",
+ enum: ["JOB_WORKER", "ZEEBE_USER_TASK"],
+ },
+ },
+ description: "Request object to search tasks by provided params.",
+ title: "TaskSearchRequest",
+ },
+ },
+ },
+ }}
+>
-
dueDate object
-
-A range of due dates for the tasks to search for.
-
-
taskVariables object[]
-
-An array of filter clauses specifying the variables to filter for.
-If defined, the query returns only tasks to which all clauses apply.
-However, it's important to note that this filtering mechanism is
-designed to work exclusively with truncated variables. This means
-variables of a larger size are not compatible with this filter, and
-attempts to use them may result in inaccurate or incomplete query results.
-
-
Array [
]
sort object[]
-
-An array of objects specifying the fields to sort the results by.
-
-
Array [
]
includeVariables object[]
-
-An array used to specify a list of variable names that should be included
-in the response when querying tasks. This field allows users to selectively
-retrieve specific variables associated with the tasks returned in the search results.
-
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
variables object[]
-
-An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned.
-
-
Array [
]
]
-
-An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request
-
-
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
index cbc08aa0846..6d5012e4f13 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
@@ -5,47 +5,223 @@ description: "Unassign a task with `taskId`. Returns the task."
sidebar_label: "Unassign a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
info_path: versioned_docs/version-8.4/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a task
+
Unassign a task with `taskId`. Returns the task.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md
index 3dad8bb79cd..5ecdd5ba456 100644
--- a/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md
+++ b/versioned_docs/version-8.4/apis-tools/tasklist-api/tasklist-api-tutorial.md
@@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit {
logger.log("Tasklist credentials fetched");
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS");
- axiosRef.defaults.headers[
- "Authorization"
- ] = `Bearer ${credentials.access_token}`;
+ axiosRef.defaults.headers["Authorization"] =
+ `Bearer ${credentials.access_token}`;
axiosRef.defaults.headers["Content-Type"] = "application/json";
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds
}
diff --git a/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md b/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md
index b00e9731c2b..a0a4079432a 100644
--- a/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md
+++ b/versioned_docs/version-8.4/components/best-practices/development/writing-good-workers.md
@@ -62,7 +62,7 @@ If performance or efficiency matters in your scenario, there are two rules about
1. Minimize what data you read for your job. In your job client, you can define which process variables you will need in your worker, and only these will be read and transferred, saving resources on the broker as well as network bandwidth.
2. Minimize what data you write on job completion. You should explicitly not transmit the input variables of a job upon completion, which might happen easily if you simply reuse the map of variables you received as input for submitting the result.
-Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](/docs/components/modeler/bpmn//parallel-gateways/), [multiple instance](/docs/components/modeler/bpmn/multi-instance/)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem.
+Not transmitting all variables saves resources and bandwidth, but serves another purpose as well: upon job completion, these variables are written to the process and might overwrite existing variables. If you have parallel paths in your process (e.g. [parallel gateway](components/modeler/bpmn/parallel-gateways/parallel-gateways.md), [multiple instance](components/modeler/bpmn/multi-instance/multi-instance.md)) this can lead to race conditions that you need to think about. The less data you write, the smaller the problem.
## Scaling workers
diff --git a/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md b/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md
index a899d3d613c..8dd56ec035b 100644
--- a/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md
+++ b/versioned_docs/version-8.4/components/tasklist/introduction-to-tasklist.md
@@ -4,7 +4,7 @@ title: Introduction
description: "Tasklist is a tool to work with user tasks in Zeebe."
---
-Tasklist is a ready-to-use application to rapidly implement business processes alongside [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md) in [Zeebe](/components/zeebe/zeebe-overview.md/).
+Tasklist is a ready-to-use application to rapidly implement business processes alongside [user tasks](/components/modeler/bpmn/user-tasks/user-tasks.md) in [Zeebe](/components/zeebe/zeebe-overview.md).
With Tasklist, orchestrate human workflows critical to your business and reduce time-to-value for your process orchestration projects with an interface for manual work.
diff --git a/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md b/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md
index cabf0ea6826..4538d006ee9 100644
--- a/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md
+++ b/versioned_docs/version-8.5/apis-tools/frontend-development/01-task-applications/02-user-task-lifecycle.md
@@ -5,7 +5,6 @@ description: "Understand and decide on the life cycle of user tasks in your appl
---
import GHIcon from "@site/src/mdx/GitHubInlineIcon";
-import TaskLifecycleUI from "./img/task-lifecycle-ui.png";
The task life cycle defines how users can interact with tasks and how work on these tasks is performed. It defines the core actions of your task application, so you should define it before implementing your logic and user interface.
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx
index eef02cea212..4b331752e6d 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-id.api.mdx
@@ -5,55 +5,191 @@ description: "Get decision instance by id"
sidebar_label: "Get decision instance by id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU
+api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision instance by id
+
Get decision instance by id
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
evaluatedInputs object[]
Array [
]
evaluatedOutputs object[]
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx
index 79260b9703a..2064069d31a 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-1.api.mdx
@@ -5,55 +5,154 @@ description: "Get process instance by key"
sidebar_label: "Get process instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w=
+api: eJzlVktv20YQ/ivEnJKUNuXELQLeDJsOVLu2YCnJwRCK1XJkbUzuMrtDuQLB/17M8mFZog31WOQicR/z+uabnamAxIOD+B4m1kh0bqwdCS0R5iGYAq0gZfQ4hRgWmyvc/H0CIRTCihwJLQtWoEWOEMMjbiAEpSGGQtAKQkjRSasK1gAxXOEmMMugaOwEqjMUgsWfpbKYQky2xBCcXGEuIK6ANgWrVprwAS2EsDQ2F9Rs/XEKdT1ncVcY7dCxxMfRiP9emp6Wkm1CCNJoQk18RRRFpqSPL/rh+F61b9ksfqAkjtkyGqQaKxzrIe55OTb9Da1TjY03hT59ZKFFkesuH+mWjCOr9INXKyxqujrcDX//MjNPNybFLsmHyzsSli4E4aA3qNNXzxwNnrBQmTPxzs5n428JhHB++9fkOpklF/x9dnOeXCcXMH/G8AKXSivO1+F+E2qh6U0Qd4jvdYNUVpaZsO92Tt97pYoy1rRbMnVd1yGcDjFwrNciU2nAVEdHrzOxsGaRYf7bf2Ukw1y6A/mVo3PiYThffV0OHTYbewdbmCTWGtsj8WkfiUtjFypNUb/E4EP04f8f7ul+uHdNwpFT70xpJQbaULA0pU5/DRb8PlQPZ5NxsBVwgF7gF8CDX0SUpVW08c1zgcKiPfIN5X5ehxVIYx4V+tV8t4d+QdproMFiEzS9N0daGW7VD+ih4C4cQ7Q+iVqZo07GRdUjbmpgZ+y6a+SlzSCGqgG3jqOoWhlHdVwVxhJfXgurxCJrsOWzJrFLUWaMZGakyPz2rt+zFQZ8wKMCDwG0woAp0Fg/9o+xsTvqPo8+jwY18dVXtDwT41nPiqgY1NNcHtTkB4suUVO+1wTdJadPtijUlQe/nYJuJ8nd2Sw5mibT6fj2ppuIWjnu7VsJ77W0LnqHeN1cgu72ZcfVP7/PPK+UXhov3vLr1k9qGEzKRaYkh7IfsAmEn4ICIUmtMRA6DaTJiwz5ddplFX8FndqlsUFutCLDzPaSZE3JTFgZQ00/59IV0uewIRIH5eIoenp6OpYiL3UqjqXJGYRMSdTO49jidt3uhDvCqZGul1bGryOLS7SoJUatIhex1nU3ZMHJ8eh41LDKUS70lqG3S+gFZn16CP+hqMiE0qzTO1i15XUP6xPoR5TnAoMQYlY5D9tCuYeqWgiHX21W17z9s0Tri/65rnwVpsrxdwrxUmQO93zqn0h4d9cOzu+D14frwRA68uqNr+qs5BWEzVzrf2sevFYoUrTeq+bkTEosaEtmb4jmuunfoS/JDEIQJQPVg7nDba990J+qam7MzCPquu7dI16zg3X9L7FMXXI=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process instance by key
+
Get process instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx
index e2d2de91467..4b03663b7c0 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-2.api.mdx
@@ -5,55 +5,145 @@ description: "Get process definition by key"
sidebar_label: "Get process definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg=
+api: eJzlVt1v2zYQ/1eIe1o7xXLSbCj0FmBukWVYgtjDHgKjoKhzzEYiVfLkzBD0vxdHSnZsq1n3OPTFFnnfv/tiCyQfPWQPcOesQu9/w5U2mrQ1sEzA1ugkH64LyCDf3uD20wUkUEsnKyR0LNqCkRVCBk+4hQS0gQxqSWtIoECvnK6DugxucCvsStTRkij2phJw+KXRDgvIyDWYgFdrrCRkLdC2ZuXaED6igwRW1lWS4tWvl9B1Sxb3tTUePUtcTKf8d2h83ii2CgkoawgNMYus61KrEGH62TNfe2rZ5p9REUftGA/S0QpH+z3uJT08O1ZPTptHJmzQeR2tvqrm3QVz53Vl+ixxOkb0ERppaJTIVE0lX51muuuYfjkG27XZyFIXgvODnr4NX+1sXmL183+F0ZOkxn8nBBV6Lx/HwdTGkzRqnBgvXkNl5px1OyTenSLxwbpcFwWaQwzepm///+FenoZ7HxOOnHpvG6dQGEtiZRtT/BhV8MtYP1zdXYsXAQsMAj8AHl0CHlXjNG3DzM9ROnRnYQo+LLukBWXtk8ZwWh6P/o9II3Nf5FsRl0aFtLa8Yx4xgMHrI4N0c572Umd7KZ+2T7jtgB1ym2EHNa6EDNoIcJelabu2nrqsra0jZt5Ip2VeRnyZFpO7kk3JaJZWyTJcH/u+WKNgAo9x3l+0RsFlEK1PGEi2caju/fT9dFQTs35Dy7449nrWRPWonsg8qilsxCFZc+aLQQ8J2iVc1vomwN8v8Nu72f3VYnY2n83n17d/Dsu8l+MV9CLpOy29i8EhPkcmGLg/DPX6+9+LUFvarGwQ72vsNjwyUNw1eakVh3IasBUyrG8hFekNCmkKoWxVl8gTaqisodj5SwxqV9aJyhpNlqs7SJKzDVfC2lriio/tK1XIYSwkDspnafr8/DxRsmpMISfKVgxCqRUaH3Dscfujv0mOhAur/E5a23BOHa7QoVGY9op8evAWgPPJdDKNVeWpkuaFoX9rowPUdgki/IfSupTasNbgYtu32ANszuPwOW4ySCBjpcukb5YHaNtcevzLlV3H118adKH5970VOrHQnr8LyFay9Hji1W5Uwk/3/avvjXjtbTgaxlDCZht6u2z4BEl8loXfbtklsEZZoAt+RcqVUljTC5mTNyB3z24efZwtIAHZMFg7QI8qPGgf9adtI8fCPqHpup17xGd2sOu+AlAs8u4=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition by key
+
Get process definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx
index 15e65cd3da4..895cda5cc6a 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-3.api.mdx
@@ -5,52 +5,168 @@ description: "Get incident by key"
sidebar_label: "Get incident by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w==
+api: eJzlVt1v2zYQ/1eEe9o6NUqabCj05tlMpiaRDFtJiwWBQUvnmIlEqiSVzhD0vw9HycqH3bV9HPpii8f7/N0d7xqw/M5AeAORzESO0sKtD6pCza1QMsohhOXmHDeLY/Ch4pqXaFGTRAOSlwghPOAGfBASQqi4XYMPOZpMi4o0QAjnuPHUyhNbAz5o/FwLjTmEVtfog8nWWHIIG7CbilQKafEONfiwUrrktiP9cQJte0viplLSoCGJd4eH9PfS5LzOMjQGfMiUtGQ0bIBXVSEyF1dwb4iv2bWslveYkY+VJhSs6KxQjN/jnpMj0xNcCSnI1vmPikbSWC4z/H7BjmVgNVYLeQc+oKxLyu1VPJ+ycXQasQn4cBWfx8nHGHyIksXlaDqN4rMFm82SGfjwIflzESeLGUtnEZuDD+MknkRplMQDC/uUzkbjdHE9urhiA3U8urhgkwW7YJcsTgfyVfzXKJ64G6Is2DWLU/Dhks3nozO2mEd/swX7NGZs4pzr1UzYOJo/N/pEILOjFw6dJrPLRZyki9PkKp7AbetDicbwuz2gtD5kGl0RpKLcz2Ast/+J52icRteMoojOZqPUOT5j8+Ti2n1OWTyJ4jPnyL1a/kAeUXJpqel2vKJbYQsiDZ3atkQ+2dcAkXzkhcg96jQ09uuNUGm1LLD87UcbgjCqzTfjOn4H38iG6Kt97+X+wn4OBtNa6QGJ410kTpVeijxH+RKDN8Gb/3+4J7vhzrqEI6XeqFpn6EllvZWqZf5zVMHv+/phNI28ZwF76AR+AjzoOcOs1sJu3MxeIteo37p5dnPb+g1kSj0IdKfb16P7DO0wt73lxutGfYl2rWgzuEMHAQ39EILHo2DLa4LmATctkHH9uN0Xal1ACE0HZhsGQbNWxrZhUyltifmRa8GXRYcl3XWJXPG6IOQKlfHCkV/7ma7RowvaSGjXsGv0KOWd9QM3XJV+pe794fvDvZqI9StangrhSc/a2mqvno55rya3x2wTMye+LuhtMobk8kqcO9D7ZSuZMpo4b+dsTuNwu3j1cq3/IsGDlt5F5xCdOybYcp9ua/PDx9TVkZAr5cT7ekrcQojetF4WIqNQdgNWHndLl8czKx7R4zL3MlVWBdJr1O823raw6cvbql0p7ZVKCquokp2k1aqmSlgrZbvhS63KM5fDrpAoKBMGwZcvXw4yXtYy5weZKgmEQmQojcOxx+2ip/ivhHOVmUFaKHcONK5Qo8ww6BWZgLRSIXfBHh0cHhx2VWVsyeUzQ/tb5gVWQ1os/mODquBCki7nWNO30w08Hrnk9g0FPoSk6tbvG+MGmmbJDV7pom2J/LlG7Zr6qY9c1+XC0HcO4YoXBnd8GZ5A+GXW7+W/ers7+16Xt0UqN657i5pO4HfrsvttaQlaI89RO2+6m1GWYWWfyezs5tQfwztzxmhl5DUBM4D3qoad9r3+NE3HkaoHlG07uGfpTA627b+EYGBZ
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get incident by key
+
-
+
Get incident by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx
index 2d0d3a29525..deb3ceda6cb 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-4.api.mdx
@@ -5,55 +5,184 @@ description: "Get flow node instance by key"
sidebar_label: "Get flow node instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g=
+api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get flow node instance by key
+
Get flow node instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx
index 3782eb8c1bf..7e328c1de11 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-5.api.mdx
@@ -5,52 +5,147 @@ description: "Get decision requirements by key"
sidebar_label: "Get decision requirements by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA=
+api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision requirements by key
+
-
+
Get decision requirements by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx
index fc0487f647b..178c9a9edb0 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key-6.api.mdx
@@ -5,55 +5,150 @@ description: "Get decision definition by key"
sidebar_label: "Get decision definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ
+api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision definition by key
+
Get decision definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx
index 06dc3839efd..94fa55bd366 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/by-key.api.mdx
@@ -5,52 +5,147 @@ description: "Get variable by key"
sidebar_label: "Get variable by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ
+api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get variable by key
+
-
+
Get variable by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx
index 87a0f9a05dd..6c5c54f8d5d 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/delete.api.mdx
@@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key"
sidebar_label: "Delete process instance and all dependant data by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx
+api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc=
sidebar_class_name: "delete api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Delete process instance and all dependant data by key
-
+
Delete process instance and all dependant data by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx
index c3098e28e3c..f767ed90bee 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/get-statistics.api.mdx
@@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id"
sidebar_label: "Get flow node statistic by process instance id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o=
+api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Get flow node statistic by process instance id
-
+
Get flow node statistic by process instance id
-## Request
-
-
Path Parameters
-
-Success. Returns statistics for the given process instance, grouped by flow nodes
-
-
Schema
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx
index 9ea6e3d454d..cabe55b339c 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Operate Public API
+
To access active and completed process instances in Operate for monitoring and troubleshooting
-
- Authentication
-
+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t
>
+
-
+
Get decision requirements as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx
index a4d4935afc8..c10c1821917 100644
--- a/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/operate-api/specifications/xml-by-key.api.mdx
@@ -5,59 +5,131 @@ description: "Get process definition as XML by key"
sidebar_label: "Get process definition as XML by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg==
+api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA==
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/operate-api/specifications/operate-public-api
+info_path: versioned_docs/version-8.5/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition as XML by key
+
Get process definition as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
index f15363d6c21..d242b135561 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
@@ -5,55 +5,282 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu
sidebar_label: "Assign a task"
hide_title: true
hide_table_of_contents: true
-api: eJztWW1vGzcS/ivEfkmC6iVtg0NhXFvIjtKqSSxDkhugjhFTu5TEhkvukVwpgqD/fjND7urVtpzrfUsCJKvlcN4488xwdpV4PnXJ2U0y4u5zcttIMuFSKwsvjU7Oko5zcqoZZx6W2UL6GbvDx152x7xhd5zWhbhjxjI/E4ynXs4FK52wLTYQvrTa0QLuaiWNxBTCcuTey4B/2E+yG0nBLc+FFxYVWiUafgBJEAfLEhUquJ8l+1qOgH/vNTOTHUlW/KeUVoAYb0vRSFw6EzlPzlaJXxbI2Xkr9TRZr28DsXD+3GRLpNjl/2EmNJgExGzQHY5Y56oXfPHHhxHjJQjVXqZkFXjlMxBPjFJmgRsiYzYGzmxjIcv5ko3JURkqmxrtgQvK5kWhIrf23w4VWB3qbsZ/i9Sj0yx61EvhaG88j0Mr9322ZRMnO0jxRjjEyGWjL5OOXfZHzNB2rtgCt6dcKZGxDLycerVkE2tyYgAOan3UeCxu6bzIwVtKMW08mszHSmDwZMA49bsCaw67GlkxMVbcpxv8yhxyHIuPWnxB70lUpwBaUE/CocxAf6md5zoVrWTdSDieT38urJWZCFGeR/9Hv42NUYLr4467w5C6q8MNHrhHH3FlBYeDjlpm1THXv/mUS91ifTRqIZ2oWXzUeenIPxNp4aHUmz06Y0aDQRho+6xIvwkvlQ9xvl7vKzyIEUgOcxRx6KzAZ8sEs/EtJHNaWgsOCZkMQjy4FN2CuRr8FflC/qBMK1xhtAth+MPLl4dZ1NfMlWkqnIOkQGD4RyNfZo/HPAZkqSWozeDUIWcnEsJnBzbAkoA7p/BCyoPt+PBaTKSWFco9xuoaXMzQrwhidQacX72/hBypGBFvMBn9d/lVGsbNxCiFMEWy19yfihULvgFyRvshjp5DjICIjCHWzrnCiAFxd2hNqxIykjnkCvhaZS+CdJMXSvxP8gOHRzWoBR3ocDpSUtTAEaGYtsyQ+2JmKNurVITcOYiBoT/JNgJJJD0sXzzrQ9ZX5UvoMsdCfTHodkbd10Bx0X9/9a4bnzuXF9139Pim08OHW9ADUDN/K5aPazEQEwBZAMdtUxhuJ3vw4ZRIPmATqjKHOC6UWYKniCXrBVPxB/oRC0NF0QhgHZN7SculUrUaf0LxlAEaoi4S8GMq7OPKzMPWf0yjoBD3QYd/vUIVpXsD77r5WGSZyE4oJz23ESziNvwVhOIx/BqVgwJImhHtQ26Kib4BoaeHQGSxhT8PJ9qBSGwQt7ItrvdiCf56haoiDgB+kkaVxD19oOJw7U8JaczPQI3BDBlvUknQRw3gTtZnpTgNz5AnELMM034SO+cq7+uYwtWmB9wKoY8Ny3VxuoCwo1kWTxGTQq8h8c1v1pSF25LEreXLo4LqPWxKmw5ESegA3bG+e0se1sCnikNQfpI0idUA2zzudyGkdmMFsn/0zz996A/edgfw8q9u97z76XrYHXwadYZvAVnXu/3QIPY+sRV6daz76WgGzaahTrpqf0IXXcNtxJ14hXqOzzIsR8wPheJF699j2/7lAYZ0V+OH3WiDiS+pKELPnXLoPon+3lsMtYrYfd7d0y6znxk1wg/0cZCH0O/n3z21n0NTS3cCzIMf4lLowq0ooBcFTQKw/j4aXbHADLqGrC6zwXdV19piANvgHY4R0mBwgsA0QxsEuJE9O+cZi/3us7AViV7tEl3Cgb0xpc5qEvSdM8zo/WLx4w+YbTkAFJ+ekM8dFhaCheCoORwDyhxbKSZsi3jXPCI3KfXyGWFUhZ+Py+yG4Krw9voam1N4o4z5DKDyXLSmrQYGqDJTFi1xiK5byUE86qz48SlZgcnNMiOcfubZjM/DTQkCJJfOhRCtrjAcMgXKY9hCtT5Wzm9h+S0sHw/LV18F1nX5r+dhEb4n6Opvkfct8h6OPLLWz0wWhprpjAagfgY/2/Pv2xhUrr0KsbVuB6QDEoC4eTUgLa0C6lUIoPVZu72aGefXZ6vCWL8G4jm3EqdtFDW4FiI9TosSZVKu6PWxPgsXtscHOPQM0kNHDzJ22f308qeXRzkh6T1cNsG/4TPzvjh+TSbio5xohusEnKv0S3JOCqciweU3sDAW3Arb/Iy3jpvbbdIhsgz+qTZsWtBC4j1lX5MLomuOOTVHu20TQAAN6vicS0VzTng5FGrSfM81hEPGUlU6nP9i/McBN/aU73rDUXPYHQ57/ctq1B0VWu/qX6sX3UROoQsmESUV9ZsquaC7oxBEvBlsptzdkNq7Q+NN6N87H6UZI2o4MaTMVhuspPP1gPzwBCsKHJwwakyb3jShaNNRbkEk1nAL3s/Ak3XLzsY4rMYrYLzZYboro6cOFIylH3MGE/AvIcaigmBop1HRkCzoNAeZslgsWinPAZo4DonQySBdYA9/Vn95eBffNPY2ZyZ19W5p6HfbVrfVdmTk2sh1Xo0rkvn3IW2cz7nekrLziWXfa6tNFfk/fIuJkeTFF98uFIeoW0dbVxGLblDtMM9y8P9Z/TEmAhKkUsCVm2S1wpS4tmq9xtcQaHYZ0q+CIcrLTDp8BtibcOXEA/Y+H8QPOC/Y8Q88R9WvklcvCQBVib/gkZKn+pi0xuHYDEIQEgaVCosXQXRzhCw2mw+m0utGtaOT4nXqQdrbLZy/6owufscMjV+Zcii/8NryBc774N+z5CP8pa9kyIJwid6vEsX1tKTamATG+Oe/84ymwg==
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a task
+
Assign a task with `taskId` to `assignee` or the active user. Returns the task.
-## Request
+
-
Path Parameters
Body
+
-When using REST API with JWT authentication token following request body parameters may be used.
+
-
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.
-
-
Schema
-
-An error is returned when user doesn't have the permission to assign another user to this task.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "An error is returned when user doesn't have the permission to assign another user to this task.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
index edc7d6ed531..5d9f747a1a4 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
@@ -5,55 +5,289 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th
sidebar_label: "Complete a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a task
+
Complete a task with `taskId` and optional `variables`. Returns the task.
-## Request
+
-
Path Parameters
Body
variables object[]
+
-Variables to update or add to task during the task completion
+
-
Array [
]
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.
-
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "User has no permission to access the task (Self-managed only).",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
index f9c4e68b88a..5f6f6b313f6 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
@@ -5,40 +5,143 @@ description: "Get the form details by `formId` and `processDefinitionKey` requir
sidebar_label: "Get a form"
hide_title: true
hide_table_of_contents: true
-api: eJzdV99v2zYQ/lcIvSTB/KtdMBR+89ak89q1RexswIIApqWzzYYmVZKyawj633dHSrIVK4mXxz0Z1h3vjh+/+3jMI8eXNhreRdfarKP7TpSAjY1IndAqGkYfwDG3ArZAK0vAcSEtm+/YjD6MkxnjKmGz1OgYrH0PC6EErfwIuxkz8D0TBhL2PQOzYyk3fN1jU4w224Cx6DY7NDFhmfZ5ufRh8X9mcblWckcFYP5U6h1+oeSWnYsFg3Xqdh0mHGZzRsAGrK93JZYrsI6ViS56USfSKRhO8ccJ7mwJzm+5E/ns4NATccgjhX/QHjaIZkE4pNytosfg0FbG75le1BBRmmrb0dCZDDqRjVew5tEwj9wupcgWC1XLqCg6dbI2AKvUHqKj3DewAAMqBua0T1+GQJCqGK8tpsTs+fy099KxAQD7i0vx5Jk1S1pwadtqEsrBEgz60iLuwqdfLrHKe1pvU60sWFrxdjCgn2ZtXxSzWezRQFZkRkFCiWONcZUjf56mUsSeDP1vlhblx2Xo+TeIHRHEEHWcCClFcgxfGzqZEggdEwnmFAsBpsIJ1nNIkhISthVuJRBDVR9hLyo67Yx4MW+DFceMYOdoxENOGJ3BhkssjaqaUSf0jlJSf2PhMrnwJTnhJJy2d+/abIziafK1RfDYlCfmF1esbKPJ09T05ZOSqExKhjhTQTG3vjiummfRYduVwLq9mqTIM8wd5KTB4jNbh6eDQ7thNkZgjdCe4Y9Zi9ChVbnxicwJ3iQt3FodC+4wM/GkCafAo5KoW4dR51pL4Ooo7FglxHdUx+0KfMVH2yKUkhCQYeMqjdRQ7B+AOZBqo7UG0zcuXQNILZ5J13kJ2R4JTEUgf9XclF2MBjJdDi6P+3iEUYzBWsS+kal+tb+SalROuZCIBrirhc7Uc4KAi+cS1j/9V2GwjrvMnkDQERHHm7B0fkS236fTrywEww5I6j4KWFTy12MII4MffJ1K6LDLwQCDVofM2dmvPGE32OZ4C56FpeR02XT6jHBcExy1C8FnNQu3xyGRf35LnFsjqnx5ggqMWDCEHSJQGxRCyjnHW3rBDpyb2/PuOo4zY0i1ieYKsUBJeznnVSBL6c9ub7GD6A6SWj9kKTuH3rLnqSr1kpU7sRdNbvoYnpR+t26ly2HBDwo4BAyj/uZN399m/TyQrkCbBbOpJojMSHTLA2+KYb+fr7R1xTBPtXHkvEGp4MgxTxayBe77XsKVUsdc+s9t6kAGEvEKt9HXMQvZw8WBOZrh3g3eDVojkesTUfac38dZOZe2xgnOrZH8jW0Bj1O4nQcnxsMQiPQdGubADZjuA11td/eHrhMKGfCpFtSnz1MRxqNmJb95v+6c08zIMywF793Q0n60pImEb3CAJeRJ2iYgF90/uUIWJCyWmaURkGhfzkHT0eTjp/Fk2p1cTSbjL5+rgagsqGjWX5dXwuRB8ZLsnaLK+7rqqT/+nnrmCbXQfnnJwCm3D1Lg7HpzNZkSmseYVx6CGsoAT3Zdp7s4LHvwD7SMxgCDeCW4d0FCsaYbf55ZoWgyKGWS+lJqtbTYojRyYxdiBkudEuS/1Eoee2YFetM2LXJ7u932Yr5GDeG9WK8JFswOJO3DeqT8VH7pPFqc6NjWq4X2//umGmL6ZSDbbwwA0eZNILp1a64OstBjhft74TFk+V7r/1dPmpJyDn64fio50rMoIc5LtbojtIKSW/wdls8abLWgO3dRnlPL3BpZFPQ5jPvUqYmw1Cr7Qf1JSM9vSlwu2InvktbCfR899RbCaTWjJRG9VE4v7fXvlGdK3L+Q9lXd72X99ei1vyhbK6nEUDXAqSosj7m4R88VCgQKEBUVjCN8G6XuYNnRc4h2U19+H65IqP4Fv3qfhg==
+api: eJzdV1FvGzcM/iuEXppgFzvtgqHwW7YkndeuLWJnAxYEiHyifWpk6SLxnBrG/feB0p3ti53W6+OeDJ8okvr08SO1EiRnQQxuxZXzc3GXCYUh97ok7awYiHdIQAXC1Pk5KCSpTYDJEu75w1Ddg7QK7kvvcgzhAqfaat75Hpf34PGx0h4VPFbol1BKL+c9GBcI9wv0QTt7v70EOoCLcaWJbnWAKqACZ82SEwCFpXFLVDGbAEd6CjgvaZmBJvBIXuMCQ8y30LMCA0ET6LgnMuFK9JL9D5UYiBlSPHImYnQk9IzDSlg5RzEQ6YAiE5pxKCUV4jk4fJThBbjpGiIO0x5bDMhXmImQFziXYrAStCzZcyCv7UzUdbYOtg/ANnSEaCf2NU7Ro80RyMXwjQtQax8/mkyD2bfj89kbww4A8Jc0+sU766Y0lSbsy0lbwhl6kcVLkJQ+/XIm6vqO94fS2YCBd7w5PeWfbm6fLIQqj2h4pMpbVBw4d5bQEtvLsjQ6j2Tofwm8abWbhpt8wZyYIJ6pQzqF1GoXvn3oVFY/VghaoSU91ehbnHA+QaUaSOBJU6EtOLu+wp6os/2M+G7cDit2GQFHHvmSFfAdLKRBS5zVPVdCbyck1/dUo1HHMSXSZPCws0fTbmHUL5Nvn4eITXNjcXPLyn00eZmaMX1WElsZA9rGhHIZYnLSdu8ig6dCG0xqUnoMaCnJSYfFr8LaPV8cFegh5Gil1y4y/DlrM0FopaXhgcxJ1iwtMgSXa0moIk+6cOpwgQYJt71OnDMo7Y7boVXMdwzwVGDMeOdYjJJKDsF5sI7AWfgHcYKs2jpswIyFy21A4VRWhrLvIdtjgWkJFFvNdVPFoq556ez0bLeOzy2g985zyLaQOX+7aUlrVA5pSEwDRzB1lf2WIJTeTQzOf/qvwhBIUhUOIOg5EycuARVyh2y/j8efITmD3Kl1HSUsWvnrwZXzgF/lvDSYwdnpKej1JUt49atUcI2PFQZ6lbay0VnX6KMjuGI41iYMX3CQusc2kX9+w5ybYwhydoAKnENaSCcsvVtoFWNOvMYpbBl3jxfNXZ5X3rNqM81tIGnzA2JeJrI09nBzM7yIPcg491CVcIS9WS9S1bgZNCcJx11uRh+RlPG0VLhmWIiDAhViIPqL1/3YzfqrRLpaZCKgX7QTROWNGIhV4k096PdXhQtUD1al88TGC+m1nJhEG15L3I+1JAbCuFya+HmfOvACi3iL2/nnIaToqXE4/8zd29O3p3s9sekLXjac3/gpiMq9fpLxXk+xYwfMK69pGcHJnXvQKAa3d5mYoPToTx64td3ebZuO2GXCp92wvn1Z6jQedTP5LdqdTCTPjLKigvtuKuk4WvJEIhdSG0aepW2EZnryp7RyhgpyUwUeAZn2zRw0Ph+9/zAcjU9Gl6PR8NPHdiBqEqq7+a/Ta2CKoERJjkaitb5qa+qPv8eRedpOXdzeMHAsw4PRgeD6cjRmNHcxby00F5RHqZYn5E6qkMDf0jIeA7wstTJL0CwUc+74kypoy5NBI5Ncl8bZWdAKeeT2QDI8BK6UJP+NVso8MivRm48ZBv3+09NTL5fzyirZy92cYTE6R5b2wXqk/NB8yZ5tVi4P693axf993w4x/cZR6HcGALF4nYgeaC7tVhR+rMjYF55Dttpo/f/qSdNQjvAr9UsjtWVgIsSrRq1uGa2k5EFkYtA8a+6yRnduxWrFJXPjTV3z5zTuc6UqHbhUNoP6i5AeXTe4HMOB75K9icc6eukttJCm4i2CXyqHp/bj75RvpLh5IW2yutvI+o+jt/9FuTeTVgxtB5w2w+aa67s6EwVKhT4mlRbP8xxL2tq28xzi06yb37tLFqp/Ab96n4Y=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a form
+
-
+
Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version).
-## Request
+
-
Path Parameters
Query Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the form with the `formId` and `processDefinitionKey` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
index 5d51ab695e2..6a2f88362b7 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
@@ -5,44 +5,223 @@ description: "Get one task by id. Returns task or error when task does not exist
sidebar_label: "Get a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a task
+
-
+
Get one task by id. Returns task or error when task does not exist.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
index 1d421cdf7e3..535fc434463 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
@@ -5,47 +5,118 @@ description: "Get the variable details by variable id."
sidebar_label: "Get a variable"
hide_title: true
hide_table_of_contents: true
-api: eJyVVttu2zgQ/RWCL22xvrWbh8Jv6Tbpettti9jpAhsEKC2NbDYUqSUpu4agf+8MKcly7HTdJ1vkmdvhmSEr7sXK8ekd/yKsFEsFjt8PeAousbLw0mg+5e/AM78GtmkgLAUvpHJsuduvyXTEB9wUYAWZzVI0XIFv3b7Z4cqAF8KKHDxYillxjR+Ia50EiKSQhfBr/jiPBeYwe8tMdpANhbXwXyktYExvSxhwl6whF3xacb8rKILzVuoVr+t7ArvCaIeV4v6ryYR+DgN90syVSQLOMQu+tBpCcYnRHrQnvCgKJZNQ6fibI6PqOKhZfoPEU9WWePEyhpTpcWLnlcrrQUPZOfaEPOVhI1R5pousVIoF/ClHqRWZ//96n4hX16ciBp9PhBxwL70iF28J1UrrS/CP3vBwhPazM+mNaGJZOGcSKTykbCv9+lGd9T5sG/GmURBu0vbF5OJYQ5eagbXGMrkXEduuQR+2Uhfw674JvpKNNp5lptQ/Ux7yjAb5b7+qQOeFL10PJ9H9CuwRT1hEs4U5Co+FFNg9mIkLOf+5WHxm0RlLTNqdWCy87bMRu8Yv+C7yQsGAXUwm6DSlGsAxwZ69ESm7wQYG559FUwJdHII+Ih3XREcHETplzjCjiaDM2Fz4WMnvr0gMOXavWJ2h80sWN2KFSNRGpiHm0krIWA98WF6AmyQpraXxUNPkQi50ckbMq6iMBs9ub1GFWAJTxjyUBXsOo9VogPu4sGJNJe7F6ECMwUdQYKjWr00zcsOYxfE55ePNy3ErKzeu9gqrEePAbto5XFqF8Crqp56Ox9XaOF9Pq8JYT+DOC9VGe1HwmSgVsa5MIlRYPtVptNEfRpefZyxGD7RRjEN3ryevJyc9EfQJL3vt7/2svS9O+ongk57CFeEAj1X6XSAnwUORyPgdbixBWLDDB6Ct+z50Ti4jP61BpwJRyPdo8TiTPwJuuBQOR4MoMRXtm9amCWC02jGxwZs2TApcnIPKhn8LjWpIWaJKRxcpyb+5RxeX8/cfZvPFcH41n88+fWxv0yah+jD/Lr2GpkAKfUcQb9HXbW/99c8iKFDqzATzRokL4R6UdJ7dXM0XxOYx5y1CUmNZEOlu6M2wdJH83kxj3jCLfKVYu6SBkSMpbFk6qek6xvaka5n6Uxm9ctiqDL1gN2IERx3zL8AS2pkpkqCsKG8q06G2t9vtKBE5zhIxSkxOtGB0oHk+7Z4kH5qVwSPj1CSus5YmfI8tZGABO3ncOHLjcNHi6cT6Ny+j0J3Phe5FoZeV6F9wB7RV+7n/K2+w5lQ9fPfjQglUQN1UUTWD4Y4S6jf1gE97bzBUdWzxO15VpM5bq+qalnFI213shC5papFUOvqPAygTysFP6nh+0zzVXrCnn3MnK2h7Se9494bh+Ddouf+ErO8RvUaNoYYpuQi4xPdc4XumR0846uZujr67Iq3/APAq1EE=
+api: eJyVVttu2zgQ/ZUBX9piZcvt5qHQm7tJut522yJ2usAGBkpLI4sNTSrkyKkh6N8XQ0m+xE7XfbIlnjlz0Znh1ILk0ovkTnyVTsmFRi/mkcjQp06VpKwRiXiPBFQgrDsIZEhSaQ+Lze6dyoYiErZEJ9lskolELJF62nebSSYiUUonV0jo2GctjFyhSERPEiCKXZaSCvE0jlmBMLkEmx9Ew24dPlTKYSYSchVGwqcFrqRIakGbkj14csosRdPMGexLazx6Pn8zGvHPoaPPBnyVpug9OKTKGQzJpdYQGmK8LEut0pBp/N2zUX3s1C6+Y0qcteO6kGpdquw4sPNSFU3Ulewce0aeYlhLXZ1JkVdaQ8CfIsqczOn/833GX9Oc8hg4n3EZCVKkmeKSUb20vgb+JhKERhqanFneFs1Vlt7bVEnCDB4VFU/ybHZue483nYJE0/DxxejiWENjA+icdaB2IoLHAs1hK20dfts1wTe2MZYgt5X5mfJKZxcaV7/9qgI9Sar8Hk4ZwiW6ozqNDXRHQIUkcFg69GjIh5j/nM2+QEsGqc22X6xNvO+zIVxbB/hDrkqNEVyMRqBMxjmgBwkv3skMbvChQk8vWlMGXRyCPlmCay7HFiJNBt6CNVyg3LqVpDaT39+wGFbovVyeofMxtAdthqWza5UFnwunMIc98GF6AW7TtHKOx0PDk8uTNOkZPq9aZXR4uL2dXEJuHWhr76sSXuJwOYxAGdB2CV0m/tXwQIyBIygwZEuF7UZuGLNUiETE69dxLysf1zuFNSISHt26n8OV0yIRdaufJonjurCemqQurSMGb1k4Nz5rBZ/LSnPVtU2lDq9PdRof7A+j8ZcJtN5D2djHId3b0dvRSSaGPsOy0/6OpyAqT/K04JNM4YrwmFZO0SYUJ7X2XqFI7uaRWKB06Ab3yEfzfeiUKdv69AZbFchSfcDNUSR/BNxgIT1mICsq0FDX2jwBrNEbkGupdJgU1sAUdT74Wxq5xAxSXXm+SFn+3T06G08/fJxMZ4Pp1XQ6+fypv027gJrD+LfhdWUKReHnFiR69HXfW3/9MwsKVCa3wbxT4kz6e608wc3VdMbVPK55j1DcWA5lthmQHVS+Lf7eTAOy4GSpMr0BxQNjhYZgUXll+DouneVrmftTW7P0KkOoPI8n6e89d8y/iAvsZ6ZMg7JaeXOaPonjx8fHYSpXlcnkMLUrLotWKfI8T7YrycfuTfTEOLOp31orG55jhzk6NCnGHZGPw0WLzrf5r1+3Qve0kmbPC29Wcv+COyhbvZv7v7KDdV+V8AfFpZbKsO+QRd0NhjsOaL+pI5Hs7WDzqGvxO1HXrM5bp5uGXz9U6DZtJ2yD5hbJlOf/mUhyqT3+JI+XN92q9gqeX+dOZtD3ktmI7Q4jRCSClvdXyGbeRKJAmaELwbWAcZpiSXumRyscd/N2jr6/Yq3/B/Aq1EE=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a variable
+
Get the variable details by variable id.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
draft object
-
-The draft value of the variable
-
-
-
-An error is returned when the variable with the `variableId` is not found.
-
-
Validates th
sidebar_label: "Save draft variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Save draft variables
+
This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
-## Request
-
-
Path Parameters
Body
required
variables object[]
-
-Variables to update or add to the task.
-
-
Array [
]
-
-On success returned.
-
-
Schema
any
-
-An error is returned when the task is not active (not in the `CREATED` state). An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
-
-An error is returned if an unexpected error occurs while persisting draft task variables.
-
-
Schema
+
+
+
+
+
+
+An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "500": {
+ description:
+ "An error is returned if an unexpected error occurs while persisting draft task variables.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
index 8712c24311a..1190ca267df 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
@@ -5,51 +5,190 @@ description: "This method returns a list of task variables for the specified `ta
sidebar_label: "Search task variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search task variables
+
This method returns a list of task variables for the specified `taskId` and `variableName`. If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned.
-## Request
+
-
Path Parameters
Body
includeVariables object[]
+
-An array of variable names that should be included in the response.
+
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
draft object
-
-The draft value of the variable.
-
-
]
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
index 8787494856b..8eb0b26fcbe 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
@@ -5,64 +5,479 @@ description: "Returns the list of tasks that satisfy search request params.
sidebar_label: "Search tasks"
hide_title: true
hide_table_of_contents: true
-api: eJztW21zEzkS/iuq+QLcJXYWWIrNcUs5xOx6FxIudqBqc6m1PCPbWubFSJoYk/J/3+6WNC8eO3YCt1wVCxSxZ6TuVqvV/XS3ch0YPtHB4UUw4Pp9cLkXREKHSs6MzNLgMDgTJlepZmYqWCy1YdmYGRiJT7hhmhupxwumBVfhlCnxIRcwaMYVT3Tr2Ui1f3yWxz8+i+WPvTHjKRPJzCzYKIsWTGo2U9mVjES0x3gcO7pcCaCDXEXUetaGmTj7NI0XLEsF8h9eWHadsRFqj1W+nKruh5zH/tmRGGdK1L+5IZdDL3NGS9UsyUHwkQCZhBapYTL1y3FStGEhwV6QzYTiOKUXgX4sEdSdhnduwhEsLzi8DsIsNUAKP/LZLJYhzWv/oVG114EOpyLh+MksZgKIZaM/RGiADugFuBgpNI0z3IjKMG2UTCfB6lYNYItoKO0RfCF9tmCcSPMEt/jFWbcz6B7Dkxenr9+86rrPnZMX3Vf08WWnhx8ul3sB11pOYAsqfEdZFgueNhh3YMcKfsxPfB6UVHaQ/t00Q4vws5nJSpo1UrpCiyvFF2sV4UcjTWc2SG4ir0RavCTlSCMSvZt2dyW6BHFR8GMxlqn0trJdA9zcsyft6M3rEzaOszlLs0jQ8kOeRjKC3f1JZflsO7WfSKgJDkZxwZoLCvappvPcatLeruCOYWAI6AxWleAo38hwZ5V/HptldWHnWqhddZbD2AZpethUGNL9HH0h2eY6Ksy+gLK28kBNgccJhdalxf4qFtuZnomxUCINBR5XR4JFBQ12H17yBE4z+EV5xWP0qyAbusv/5EItWg22vYiNpYijB6Rn97qXgl8DLneXSToKO0vkWRbykDh8IvryU9WbSfDwE7CtVSlwWBkrcSK7D4rheWzYv9n3Bw9wayEeJdxYKo8eIodxFsOpP58d1z3+hsAwVlmyXSF9w5VhtOmKpxPSi4t9SADNAl/uG5kIZkViWW5iiW4YXmpgjZv5feuJN6yzly/Yo0ePfkD9jmVcGFyvf8qePjn4DuNQGnEV1VZZcMGVmmy75N00Wi83fPoaUi8bh85JBoSiXJBAGoWphMOKsjOFhI00Ma4Zt/iljAG1oDpg+t97/o3tOQ5+y5Xko3gHVNMBiIEvkPGYaLAw5uDGNdMzEcrxAtRJQlx5miiIG4qCEBwHGE4OGkE3Dv6AXs8BbkQ1ALOLRcynEtaA0NxzQhi7sIR+zubiCvG3RNQik1mmQJUG56WZETY/MFOIO1YElC4R4ZSnUoMBaiICSyzg3jxT75n4GMa5hrgFcsylgW1XeQq4GYYUy2qxAZJNAItaKuWCQTecxVyBS2YaXTBmEyAOC7NkBugbBjmypWCQfKQR0eHGYH5Ca4flon4SlnBUj0bHDSYmUx6GuSKUDSghRbqxMKUeceBaXLnhPGM02g194khvvn7FFCUhjOU70qChDSLs3RRwwgYrsnPcNocqDyWPUUEJh6jFEVNA9gQ4AkKu27Jf+qcndpZm9wFmwAT5iVKf4pxYtX1kVilgwTkamoVuD3A/mEh1rpwV2QVp0C4yRSMEFQJZg1ZiDy0YCOnCZmfZDmBv4MSAZUI+xvxEv/de0kJJZCH/YEPxYXjIKIfUldRKfICsaVmedAQUR4vydNM7gB6p6UW3O+sDmsV6x9XjbFM7u28JWJzcJ+Lhwh8s+AZ88Yz7pCwLJR0jZ/7C7bfEw1eyqGbf/yJKEhyG1J4aHhvK7oVxKHmSQlYd3YBUcekanMOtVl0YRt0oCYtZBwsU6ZE7cmy0uMWpIzrrbMTvpzvXINgAwwBAfiV45WsNqJXhGzPnTEW7JBtgSp3+C7Cljg4FoPJ04i3suEvPj4V/UZELpsA3HGHtbSXso1JKhYAvdJscWs1VYxFa6CmKerSwW1SWUbbuFKQ95LKtpQAbALjgGdG8LPcW6/iddI7AHuRplscRVlnCbIaWR2AEt/KtHYU7n9YLGHYMOY1cKcTrRbHJrhPBtYtthlm7t1l0501vVUixUr+KpALzIC+C+1lwZTICTvZ0gB7xsa9VuQXt2YMEQoCGjS9X4FLQVskGtp2JRt3q29U7OFv0PAK1UC39/HX7YKuD3+AOzOCniMRXU/m3a/te81/T+AHBxnkk7pCG5G4/XIRG3O36AwVyRMTa2AXHkRI2F79ngCABlyOYIRhN0Z4QDql4YLE6xC/MRbK5diUtSrNizPkoXQCdKwkpSRnzyrxgHf6xW+LBjhenvtF/LZDn8ZwvtG25vMzj+O0KsN9YgKd53ugIJ8Hs9WD/Oc2mQlRwOAYQK6qwtVc3B2siiIQSsERu2W0GTb+cHv3+7vTs1+4ZPPyt2z3q/n7e7579Puj0f10HV85cu8hqtJrr09aMFqW9u47SCn7p03BHBoRFFt6eaFMeHhzgjzrb0xTzDaoLFo0mRHi37Nb487GjfcgdWgBoHXkqYTnl2VdVz0RmcjdLK6bfvjOBVW4qkUKKULpGalKUxd5qwfbkThK6ybbC7uD2SlFsY+sEXMec69J10nywmw313iGuplXF9MNq3blE/3fm7+oC2ySopRk1GXZvnZHVwBYhm7aMkPp8czetsIH+Z7QV79pVLMPu9kCzGsyzSgyXKXwdNlzA0MZe61Uwg0/FR4PxFULtlcxyXY/H22KjfimVNrs4YDaO+YQc2JSyCG4qURyDF9DxEcZDCpvKt2zZXyW3b24UHHB6QWeXA90gA+eaSmeRmMXZAkESkmQ9u+P4BZeBhTQ/wtcCrI+jbn4KQacQ4y1E6Hq42NQqaQhzZad+MYnqjZYnjwO7t/Csm4xEFO3U5O7pkrFw01yRCBjhNjx3wilhJaOxN6npL+25WX+zpt82/N823OQWD9jot9Xk8SWz3dxUUcfaiPda63stN9D0Nf5aiX9zi2NDA+8GBnbGfj67DZvbduyp2LnaJ19ldYMrvGXDu87OovVbcLu6U1PEE7+nq60CujhUJgJl0RO8cTOAtFbzoWH9PhI7KVobvKAKDCPFx8YBbueWqolFjZGFp8NbpBafDR1rWcb/Q8fBumBCAgPf4NnBCR9nLs0eUkAXc6IwxBYEtSLIBCoNI2KtKtnQc+vkyrk7XKxgbvzqIsjOgESLvZKJNK4FKT/Z1ZFFbN/avzW5RZONpJGccuW4NRRSabfiMHvs/IG2olZTXv+mfjy/eOa7Lm0tWFHi+nhdrgoOTiiVUaul8ChUKUky2x5LqXrlEueiNQPYP8nSyZe6K4lOsHkxcnPSDEYOKk3+eZerjrneATR2sBVLr6w3VsKJZ63658HgDbPEwKSjwkqsLn2JoMUABDLxkeM+7zHYACAa4RqwZMTuHfGIucBwz07FQY/rgyAiAJk8jYoh2L7UGcOUeN0dnwTgDmQhu5wX+8Ku0JVCkOdISYFt/GJwfXk0PAspz7BdUY/Gdrh+YY3No7fzc8z44UmcZe8BotwXrUlrD00gzrCdTyvRD1q1E0U0vFWDNU4zvCk7y8hgZtxM4Vv76rs25WBta3ABFoXVFYGLi+sgVzEMurZmszxst6+nMH15eI23DJbBCkTAd/bouLpWEGchj6eWY9N94ItqbMOireVuQbBrVpbknh48PVhLCYduoFKafElnasxsfYJNg9dSWi4vUTewm9IsSDkh7IUERV/AixFoT6j99wjULy6rQ/tI0urHTyjB1EwitF+V5AWN2x9xLO3yHEQBHGFPtL3yClCKX3EZU3UXHvZFPN5/zVMwgojhxQ30PGj1FmME6P5e9fqD/X633++dniDkQUZOoGVd/kI8pyZSCgUxGhT40S/9kfrl3YAMD73MWXn1umsPdOXqdKVGUd5rhvAmqmWW8khUrhpf+KeX6wpn5ZTV67mb3qyQXLmgumaWA9zVSevzxnLuuiSu8ra4xHjQTFfs7bLg4cHDx/sH8O/R4ODR4cPHhwdPW08f//BbYO9wbX5fz66+ALWVO1IXvs5erschqPJBeQUEb2XgkahcvKjq0V5KuChuAzSb/q6VT113e7YqPfIaqTW93OZ732Pc9Gbt1GaHZo0SNnQObH3/solkqoCF4sPYXs2rgBTq5px1+wN0R02n5UdglRECKo8W+ybbx5sz6L0qWIBKcuBwInAehRhslGuZYqHAGSvGtRgAi4YQZ+8m2x4ARJrfhBgJX6DnIblmGx/QT2gIDvP5vBXyBGIwx4oqrgi4C8RWRWMmeOWe7K1MjrJQF7NlRt/bytc02o6QblPe44tawdV3NlJok/C0wqVfaWCsKq3yCyF//15N4/dqnO834qNpz2LIQVDBtFXXDjRcoNatS9CBPzl4RGz8vwiurzF0nat4ucTH1Eu0YdLDBQqSMAHslY7wdUCRByIfbcz+AIUofUqjD7Tc8zM6YShm5saxlxX08+a0P8AA5n4zKAFMCk8Vn8ND/P8w+C/8Je9FasNB9Pw6iHk6yQkwBpYu/vkTzq7BxA==
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search tasks
+
-
+
Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request
+
-
Body
followUpDate object
+
-A range of due dates for the tasks to search for.
+If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ value: {
+ type: "string",
+ description:
+ "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.",
+ },
+ operator: {
+ type: "string",
+ description:
+ "The comparison operator to use for the variable. * `eq`: Equals",
+ enum: ["eq"],
+ },
+ },
+ title: "TaskByVariables",
+ },
+ },
+ tenantIds: {
+ type: "array",
+ description:
+ "An array of Tenant IDs to filter tasks. When multi-tenancy is enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.",
+ items: { type: "string" },
+ },
+ sort: {
+ type: "array",
+ description:
+ "An array of objects specifying the fields to sort the results by.",
+ items: {
+ type: "object",
+ properties: {
+ field: {
+ type: "string",
+ enum: [
+ "completionTime",
+ "creationTime",
+ "followUpDate",
+ "dueDate",
+ ],
+ },
+ order: {
+ type: "string",
+ description: "* `ASC`: Ascending * `DESC`: Descending",
+ enum: ["ASC", "DESC"],
+ },
+ },
+ description: "Sort results by a specific field.",
+ title: "TaskOrderBy",
+ },
+ },
+ searchAfter: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchAfterOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBefore: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBeforeOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ includeVariables: {
+ type: "array",
+ description:
+ "An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ alwaysReturnFullValue: {
+ type: "boolean",
+ description:
+ "Always return the full value of the variable?",
+ default: false,
+ },
+ },
+ title: "IncludeVariable",
+ },
+ },
+ implementation: {
+ type: "string",
+ enum: ["JOB_WORKER", "ZEEBE_USER_TASK"],
+ },
+ },
+ description: "Request object to search tasks by provided params.",
+ title: "TaskSearchRequest",
+ },
+ },
+ },
+ }}
+>
-
dueDate object
-
-A range of due dates for the tasks to search for.
-
-
taskVariables object[]
-
-An array of filter clauses specifying the variables to filter for. If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.
-
-
Array [
* `eq`: Equals","enum":["eq"]}}>
]
enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.","items":{"type":"string"}}}>sort object[]
-
-An array of objects specifying the fields to sort the results by.
-
-
Array [
* `DESC`: Descending","enum":["ASC","DESC"]}}>
]
It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>includeVariables object[]
-
-An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.
-
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
variables object[]
-
-An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned.
-
-
Array [
]
]
-
-An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request
-
-
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
index 0f0e9a2a65a..990075db9b4 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
@@ -5,47 +5,223 @@ description: "Unassign a task with `taskId`. Returns the task."
sidebar_label: "Unassign a task"
hide_title: true
hide_table_of_contents: true
-api: eJztWG1vGjkQ/ivWfmmi4yXtRacKne5EEnKlTZMIyFVqFDVmdwC3i721vVCE+O83Y3uXJXAJyd3HfmJZj+dtn3lm7GVk+dhErdtowM236K4WJWBiLTIrlIxa0Y3kxoixZJxZFGBzYSfsnh67yX2D9cDmWhpmJ+DWG1EtUhloTtu7CSrIgwKnvhZlXPMpWNBkcxlJ/INCXh8uC7KZcTuJHjoyQAvdM6ZGG7Y0fM+FBjRkdQ61yMQTmPKotYzsIiPNxmohx9FqdUfCJlPSgKH1N0dH9LNp5Eoyk8cxGMO0iwwSshIraUFakudZlorYhdf8amjTctuoGn6F2FK0mpJhhTcpkm3HdoWZS/E9ByYStClGAvRm1KtaSNs+ukhyazs9nMFISFF8pqdU3Rj0gj4hfYORVlOn8OT64yVLSkVON4ZM+bt8kYdhs1MUa3BpPuN2D02fJiDZnK+RyNx+SNiBBjKRMILKjKeYVDJ3T9E0CiMDMYV7hrlOk0NvXU2zFP6Tfa/hSQ9KQ1s++MKBPfOY4yciM02RkPb5RDFhWNCRMKu2MdC3e8VG2g2JblcfT65kuiiqD2Q+JSo57XXag84ZSpxefby+6ITn9uVp58I9nre79HCHfoyUnn6AxdNe9GAEmMgYqqEw2u7ioYd9kLylxpMKRxxnqVpgppxK1vWh0h/Ko1S2lKjhCr4Kxb1wy3malm78jewmPDUEXwTyxxj0087M/Nb/zSPvELfeh9+OyUVhzvFdZzqEJIFqxoZKpcDllpddszYMYRv980bpM/wZnNPgPXOyj6UpFPqahJ4PgaCiwj+PF9qWSWxg1WoL612JUEcTL3dIBA1I4Ht5VFh84A92HC7tPpCm+vTSBGaseBULR32uWW9UfZLDfnxGOlGYJVT2/luv677EFK3WLfKWh36aqvlNtr8Bv6OeZ88xE3OZCHrzl1Z5ZiqWuNZ8sdNQuYeN3aYtU8LC1OwaGyr2qAc+1xyR8rOsCeoGU4QJt5sUUqaxINn3VydfPl31PnR6+PJzp3PS+XLT7/S+DNr9D8ishCBhU9pKYOuF2QeN0NLxrumnLRlojb6K9fiDfQQbW0m3gXd4bMUM2AE9C78cON83isPG70Pd/GOnQrHuIa5hko445YKq5KBoV4dsCJg1eGT6wuoZYqp+ee4URg7mZg9yRu/DEjrMLUaQ4QSJnng6fDcYXDOvDHt9UjZHH3ExazYYki2DH5y+a41h3lFpQjEANmf26oQnOETjuGfsK7+VhI43hS4xRecql0kpggBjRjGauTYp/tc3VCNTpBU+3qMK28wv+AgxUTOcOsnmUAsYsYrwZnhOXMVxrjWNyATcwGJP2+x4SBQseXNDIyW+SZX6hlRwAI1xo0awStWYhUgMcWIF0k5HieXjF2G5ZMfiOFOge0Sp/om8n8h7HHkuWjtRiT+yxhN3vMWjaytqzl43CVSmufTYWjWLczAKYU+YFQfgXKcov/QQWrWazeVEGbtqLTOl7QqFZ1wLjnBzuKE1j/URz1NKfKpinrrXuxoRLVTPV+3rLvPW/ciDNjbVvT16e7RTE4n+i5Y1/Nd6JtZmu88RTninJndGN4BfVtiFS06M30Vg0m9xYQhcg65/o7Hs9q4q2ieVPj/FhnWPzgQNcg89OXVy9SE3yAo8R1fwpO2rm0hA4ZmG8RkXKWUe/7I+pKP6Ry4REAl2q9zQDQZVQLjAoKZ70e0P6v1Ov9+9uiyuMoJDq03/S/dCmlxS3ATuhKJC+rwor/efBn46kCPltlc6eyqMZb1Of0DZ3M55IUFnQUYHtkXdqjrOJS75FVqjEVZjvhKMvZxC2DA3QtJUG4ZVKtFUybHBanXTjeNSGnrZZ4Bh2bBxQiBHPbwpTIPYns/njZhPkU44nXspLWgdaCxplXdBF+FN7cHmRMWm3C2U+9/UxQDeDIpMk7TOihNYNHvtgW7slMuKlQf3Wg/ztlxz/0uuwMLntfDDNjOcbSQ54cJZBoq4Jc/8Kdzgb6u8ASt5AhHuy/02Wi4JqTc6Xa3oNXK2XviqKNjBlUsiDD0jH414auCRkA564d7skO2+V9sZQFFTcuF4Kc3pHz46TBd3eCs61E8QZ4hjcsovtuMYMlvZtnWPRhVd0ul1e3D6DhH/DwHNHpg=
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a task
+
Unassign a task with `taskId`. Returns the task.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md
index 3dad8bb79cd..5ecdd5ba456 100644
--- a/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md
+++ b/versioned_docs/version-8.5/apis-tools/tasklist-api/tasklist-api-tutorial.md
@@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit {
logger.log("Tasklist credentials fetched");
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS");
- axiosRef.defaults.headers[
- "Authorization"
- ] = `Bearer ${credentials.access_token}`;
+ axiosRef.defaults.headers["Authorization"] =
+ `Bearer ${credentials.access_token}`;
axiosRef.defaults.headers["Content-Type"] = "application/json";
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds
}
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
index 3dd58a62c99..90de6fb8e7f 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
@@ -5,51 +5,178 @@ description: "Assigns a user task with the given key to the given assignee."
sidebar_label: "Assign a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztWNty2zYQ/RUMXppMbVFJ3TTRm+M6rdtcPLbcTmN7xiAJSYhJgAVAySpH/96zAKl7LtPmMckkw8tiz+7inCVWDfdi7Pjgml85aZkX7p7fHvBcusyqyiuj+YAfO6fG2jHB6s6IzZSfMD+RbKymUrN7OWferD0QYY2UPX7AK2FFKb20BNRwjRt4JV9DuPpdzmGjCKgSfoJrK/+ulZU5H3hby+1ohsAgODMKcKuQgB9RCdNlE1kKPmi4n1cEp7SXY2nxamRsKXx89OyILxa3EVI6/9Lkc1qzHUFmsFp7eiWqqlCZoGCSD44ianbBTPpBZp5St6aS1ivpwtq2KHS9m1T3liHAzdR6bON9WTvPtPEslUyWlUctLLvTdVHcUeptDM5bpce4pxciLfBsJAonFwdcFIWZvZtKa1W+J5iXc5bLkagLfxDiCNVVjlnZhpAzNWLKs5kAKQo8zudddHmPXUqPZbDHhtwFyDu6tNLXFsTQDLgIWGnm6mzCMuGkixkGoJAdYDUbKetCkrVeAsNRuixFzsRYKN1jIG+EnNG6uanZRExjAR2rVHaPSrCRNSUbW1NXEQg7jj0nj5WV4KxnVmSSYa9zRZVwvRu9KmdqTCGF3qgnkYPKmcXCbdfxmGXIBaDRgE1FUVOcApVTRRESyTKJXOAthrdic4iIau6wD8vwQ5JS55UBeVHCqYlU7LGzUaAECDfFpuYHYX8Ipd1KyvOmZeAN30htD1NCZkjNK0+3oTuQWGMrKBHaRVQM5EN2CLNCxSLNn/aP9jN8md13rt1C8hRplH9ArUAfDm9H/f6nJBIW7ch/T0fKhG5lkpmyKiT5Z2+MlSiKF6oALK67khEjaX2XC0vRDWKhPqJ/rES1yu93+8A2Ec6jZYvLYn9AOiwaphH9+uLVCXtx9ONPt48m3ldukCSz2axnR9mhBCeN7Rk7TnBL/8jucdANcijFPNApj9QVBVt1HuYqmamRyroO3YbNaPs3iPCRthXfNjt0WTbS2iq+89FgVxdnDHXVXo3mROAd6LAmkBP2IjW1H6SF0Pd8Rbxd0G0UV5elsMvPwSYAHDkvfO0++yH44emObyLcr8PhOYsuwKG8680QYQtESZRKq7Iu+QC8xZ14iHfP+v0F+aQd/4JM0BcfKqQfqLWdDshRrngbElMacensa+2MsWqstnEBtNYEWhL/HDOKwj/6rNb3CZMUT8ocmVp3kn/xH/xgH1rRzqxBIrRTEHttLZIr5t/E/k3s38T+tcSOlzjFT0xOJ3XjAnXowD7gCYn0kETqkmbtXL9IVh9sOpNLO+2GgNqiTLyJIlqA+80ELheDpjLWL5LpE9hPhVV0HAkbSq+j2DoSFTj7FJMYyO5m0guaNChJwd5LCcX8gu4wE/NQUcLZ9Pe8/7y/1xWZdrWKji5OL4fs+PyMxZQi99b6QeeShL3XZTT+nNMwmjiJfqb8/JKWxFqkEq3MHtdU/CUfWqzgORxYgxGexItXHUt++3MYNpr62MVq7Dl9EHRE2hxTViTbGhniWNQdfDuzQNSRCUG1NNpMjTYVDIiL+r0nu3RF+qQ6nNfKWofWC8ouO3/0lhV0VLSkRnRnie5NiO1YGU1O4nqMRq+jBfsj4rInATXSr+u7Y/iv0x5Ak0xgXS6Sf8hNkhYmTUqMGEkL5JL3p6cvTw9P3r15c/X2bPjX4euzk9O3l6eH8NvzDz6UltRRCr0WVTw3r0/Q26k3q+/O/x64W0Z4+eATdBnM1os25aaV7DVfSRYLBpvD+JpqQcCovGveNClGtStbLBb0GMyxGJavb1dCDcrOlaPrvB03P5Hmo4t2zH7Mvmyo35tX+1DoeWgZGLFwh0u42/qVYXEL8wmmVciCIo0WJzGewyH5WXnYmfMXB92KYwxtlf+I7cYxgfS77Jnn7y6HJMf2N4bSkJC4FTP6yQP/D/gN/uLGhFoFpYfnDceXYlyLMdlHv/TnX93IKMU=
+api: eJztWNtuGzcQ/ZUBX5qga63cummyb47rtG5zMWy5ReMYMMUdSYy55IYXyVth/70YcleyLrmgzWMMGNjLcM7M8JxZjpbM86ljxTW7cmjBc3fHbjJWohNW1l4azQp27JycagccQm8EC+ln4GcIUzlHDXfYgDcPHvC4BnHAMlZzyyv0aAloyTSvkBWMfI24u/sDG5YxSUA19zOWMYsfgrRYssLbgNvRjGYY4cwkwq1D8qZDJUwnZlhxViyZb2qCk9rjFC3L2MTYivv06MkRa9ubBInOPzdlQ2u2IxBGe9SeXvG6VlJwCiZ/7yii5S6YGb9H4Sl1a2q0XqKLa7ui0PVuUv1bmBi7mdoANt5XwXnQxsMYAavaN2As3Oqg1C2l3sXgvJV6yjJGL/hYISsmXDlsM8aVMos3c7RWlnuCed5AiRMelM9iHLG60oHFLoQS5ASkhwV3wJVFXjZ9dOUALtGDn0lHG3IbIW/p0qIPVgPXgNYaC1KDC2IGgjt0KcMIFLPzM9QwkdbFJINeAXtDD1a3fMqlHsCVwwS5oHWNCTDj81RAB7UUd1JPYWJNBVNrQp2APgQMGKOsLc5Re7BcIAijS0mVcIN3el3OsTEKud6oJ5GDyilS4bbreAwiOG8qSAYw5ypQnNzDQioVExECnZNjhSm8NZtjRFRzF5RfhR+TRF3WRmoPUs9NouIAziaRErU1c1limcX9IZRuKynPdx0D37GN1PYwJWbWZsxLT7exO5BYUyuoUPuLpBjWtmRn0dVGu0TzH4ZH+xm+yu47120heUo0Kt8H57EcsDZjR8PhpyQSF+3If09HElx3MhGmqhWSf3hlLEKJnkvlgFtclYwYSev7XGBsyiYV6iP6r60ZK6y+3+0D20Q4T5YdLqT+ANxBMhwn9OuLFyfw7Oinn28ezbyvXZHni8ViYCfiAEvpjR0YO83tRNA/2T2OurEIFW8incpEXa5g3XnA1SjkRIq+Q3dhA23/BhE+0rbS2+UOXVaNNFjJdj4acHVxBrJE7eWkIQLvQMc1kZysYHxsgi/Gius7tibeLug2igtVxe3qc7AJ0GbMee6D++yH4McfdnwT4X4bjc4huQBhyr43S9cDURKV1LIKFSuOhsOMVfw+3T0ZDlvySTv+BZlowPtacR2ptZ2O1FCteRsTk9p5rsXX2hlj5VRu4w7YwybQkfiXlFES/tFntb5PmKR4UubEBN1L/tl/8CNdL9qFNXoadwpBBGtRe9V8E/s3sX8T+9cSe5uxCv3MlHRSNy5Shw7sBctJpAckUpcvH5zr23z9waYzOdp5PwQEq1jBlklEbZHny5lxvi2WtbG+zeeHLGNzbiUdR+KG0usktp5EygiuZimQ3c2kFzRpUJIc3iKOEX7lHhe8iRUlnE1/T4dPh3tdkWlfq+To4vRyBMfnZ5BSStx70A96lyTsvS6T8eecxtHEoQhW+uaSlqRajJFbtMeBir/iQ4cVPccDazRiWXfxomfJ73+N4kZTH7tYjz2n95yOSJtjyppkWyNDGov6g29vFok6MTGojkabqdGmonVp0XBwuEvX87OoOmGqKujYevV03fmTN6HoqGhJjUoK1C5G3Y2VyeQkrfcNvEwW8GfChcOImujX992p9LMwHghT5YJXQZc8/4fc5GNlxnnFpc47IJe/PT19fnpw8ubVq6vXZ6O/D16enZy+vjw9OBwcDvy9j6UldVRcP4gqnZsfTtDbqS/X353/PXB3jPB47/NacalpZ2LKy06y12wtWZaxYnMYf6Dam6xT3jVbLsfc4ZVVbUuPPwS0DSuub9ZCjcoupaPrshs3P5Hmo4tuzH4MXzbU782re8h1E1uGCnTHMnaHzdavDO1Nm7EZ8hJtjDRZnKR4DkbkZ+1hZ85vs37FsRBY+4/YbhwTSL+rnnn+5nJEcux+Y6gMCYlZvqCfPPgiRW1inaLK47MlU1xPA5+SbfJJf/8CTbgnyQ==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a user task
+
Assigns a user task with the given key to the given assignee.
-## Request
+
-
Path Parameters
Body
required
+
-The user task's assignment was adjusted.
+
-
-
-The assignment of the user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
index 76903ffe6b9..6bd2731a3ee 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
@@ -5,55 +5,172 @@ description: "Completes a user task with the given key."
sidebar_label: "Complete a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztV8Fy2zYQ/RUMTslUFuXUTRPdHFVp3caJR5bbaWwfIBKSkJAEA4CSVQ7/vW8JUpREe+x2crQ99hDE4i12970lUHAnFpYPr/mVlYY5Yb/y2x6PpA2NypzSKR/ykU6yWDppmWB5Y8bWyi2ZW0q2UCuZsq9y0+c9ngkjEtgaAi14igEQaNUUi/6QG9goAs2EW+LZyG+5MjLiQ2dyeeh5CngAMz2vPLXOnWZhvSvyasOlTAQfFtxtMnKoUicX0mBqrk0inH/1+oSX5a13Kq17p6MNrWn3MBexxSZCjeWpozmRZbEKBe0n+GJpU0XXm559kaGj6I3OpHFKWppdCaPELPYDEUWKUER8sWP0UNDbpbuRHuSACkDBH24izeOY1nr0ssdF6JGLA0enLMyt0wnzBnAa5+REOGDHMZtJzITSWgU0NjewbL1LFN1ZZqTNY6fShZ93S2WZTKNMI91MpSvtc9dnZ3OWaseQoZWKZNRjqvYSybkABAV6w5tQb3j/Jm1js87ARTc2BOeUo2HFX6JYTVb4nPgqo+Rkh41mOrW+GK8GJ910TPezK+w28RGzeZWIOdyD5oA7GQweRegIhIUipSQgsVvoPjvXRiILTqgYCsNzkyPkr1rfbJ3NQFiflwcYipVITvJDl6mHlb/wlrVf5snDELM3nHnv15P3I/b25Kefb18sncvsMAjW63XfzMMjCTpr09dmEWBIf2T3ss+QBMSQiE3Fny3rWasNZjMZqrkKqeYUYL1tRtXeq/sDwvKzRYcdW63nRvFDWZ2yq8kZQ15Tp+YbYmzHdbWmYiPsxUznbjiLRfqVtzzrOj30YvMkEWbbs/YdAMg64XL7aK/68VUHm+j123R6wTwEOBRBltp41dWOKIhEpSrJEz4ESzESd370ejAoCZMq/oRIUibvMoRfUeswHJAjaXlbBaZS7CsNv1dltFELdegXjnY0X5P4Fx+R1/nJE6TdFSapnZQ513ka1QJ/+z9wUIdatGujEQhVCmLPjUFwaB3PYn8W+7PYv5PYMYmj5lJHdJzUtqIOnSqHPCCRHpFIbVDsHD7LINweD+jYKM2qOanmBmnihRdRCe4XS0CWwyLTxpXB6hj2ewc6mvZia0gU47ATL/1GusWkCToOU5CCfZYSivkV3WEt/ImC/OzjvRm8GdwLRaZNrjzQZHw5ZacXZ8yH5Lm30w8aSBL2vZDe+DHQ6vRsJfqZcptLWuJzMZNoZeY0p+Rv+VD7qpBp7I3wxj+8b1jy+1/TqtDUxybtyXx8J6hUhwfpnfNsw7iKjnNdua7Jsh8AlQ519osG/eMuKREkaQvsSPK0arAg5ra/e7QwxmmZ0tDj6MESPZo81jccbzLy692GffAW7E/vlx1XXj3Jmu66AH4+68NpEAqsi0TwD8EEs1jPgkSoNKgd2eDzePxufDT6dH5+9fFs+vfRh7PR+OPl+Ai4fXfnqgSSBhKR7uyqubntXtwOgy/a78t/uunVVXbyzgXoHLjUlXWARS3Da97KEAuG+7fAHSWCVF5N17woZsLKKxOXJb0GGwzuaNe3rfgqtUbK0nN7ZXswpBeT+nb3kj31NnlvZPVLkW6qRoCbEkZ4BODBBbe8hflSighkp716i5Hf0dGUcFqEzv2y7DUrTnHlyNwDtnsff1LlthNefLqcksjqy22C7wbeGrGm2zb+D/kNfjHQVbYq/VbvC47+v8jFguw9Lv38C0iulxI=
+api: eJztV11v2zYU/SsXfGoxxXK6rGv1lmbulq1pg8TZsKZ5oKgrmw1FqiRlxxP034dLypY/GrQb+lgDBizx8p77cQ592TLPZ45lt+zGoQXP3T27S1iBTlhZe2k0y9iZqWqFHh1waNZmsJR+Dn6OMJML1HCPqxFLWM0tr9CjJact07xCljHaNeXu/g9csYRJclpzP2cJs/ipkRYLlnnb4D7ydI7kGEwZkAZwb0D0URGqE3OsOMta5lc1AUrtcYaWJaw0tuI+vnp+wrruLoKi869MsaI9QwwlVw4TJoz2qD2t8bpWUnCKJ/3oKKj2EM3kH1F4yt6aGq2X6Gh1wa3kuYoPvCgkeeHqcsvosaQ3W7cz3asBNYCS3w9CN0rR3ui9SxgX0XO7B3QKonHeVBANYMFVQyDcw1IqBTkCFwKdk7lCKK2pttBxgdo7sOga5aWexXU/lw5QF7WR2oPUCxNrN4LzErTxUFuzkAUWCcgepcCSN8pToh/YOtUPbPRBD7k5b6WeHebWJcxLT4+Bv0SxnqzS6KvYZdZ1ZGfR1Ua72Ixn45PDckx3q8vdpvAFuCYUomyUWo1Yl7CT8fiLHg4EAoJrKkKOg+sRXBiLUKDnUjngFjc1AqnD/nXokJtiFevyCENra3KF1Q+HTN3v/GW07HEhkge4g2iYR/Tbq9dn8PLkp5/vnsy9r12WpsvlcmRLcYSF9MaOjJ2lthT0JbunI5jO0SJUfBX4s2E9DNoAV6OQpRTUc0qwDxuo2zt9f0RYcbU9YMdG642VbF9Wp3BzdQ6yQO1luSLGHkCHPYGNLGM8N43PcsX1PRt4dgi6j+KaquJ2c2btAnQJc577xn3xrPrx2YFvotdv0+klRBcgTIFQGhtV1wNREpXUsmoqlp2Mxwmr+EN8ej4ed+STOv4VmWjAh1pxHai1n47UUA28DYlJ7TzX4lt1xlg5k/u4I7at+Z7Ev8SMos5PvkLah8IktZMyS9Poohf4y//hR7q1aJfW6FnoFIJorEXt1eq72L+L/bvYv5XYu4RV6OemoHHSuEAdmiozlpJIj0ikLm23hs8uFZvxgMZGtIv1pNpYxTLWRhF1WZq2c+N8l7W1sb5LF8cs2R3oaDmKbU0iZQRX8xjIYTNpgcZhSpLDe8Qc4VfuccnjREE4u/5ejF+MP+uKTNe1io6uJtdTOL08h5hS5N7WebB2ScL+rMto/CWnYXp2KBor/eqatsRa5Mgt2tOGir/hQ48VPNNzNGJJ/+P1miW//zUNjaZz7GqYzCcPnFq1P0hvzbNrxgU6liZA92TZTYBah9bFTePR8SEpL8+DtoSpqkaHA1bPhvM9ehOqcZ7KkDAlBWoXYutvONHkLO73K3gTLeDPiAvHATWSbH26zqSfN/lImCoVvGp0wdN/yE2aK5OnFZc67YFc+n4yeTU5Ont3cXHz9nz699Gb87PJ2+vJ0fHoeOQffCggaaDieiuq9c1t++K2n3w7/L/8p5te32WPDz6tFZea+hASbHsZ3rJBhixh2e4tcEuJd0mvplvWtjl3eGNV19HrTw3aFctu7wbxBbUW0tHv4cr2aEpPrvrb3VP42tvkZzPrX3K9CgeBauiJJeweV3sX3O6uS9gceYE2xBotzmJER1PyM3g4uF92yXrHqRBY+0dsd/78SZWbk/Dy3fWURNZfbitT0F7Ll3Tb5ssYtQmVCtoN71qmuJ41fEa20Sd9/gX/PZYW
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a user task
+
Completes a user task with the given key.
-## Request
-
-
Path Parameters
Body
variables objectnullable
-
-The variables to complete the user task with.
-
-
-
-The user task was completed successfully.
-
-
-
-The user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
index c07bf7f8421..a8d3d916097 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
@@ -5,44 +5,143 @@ description: "Obtains the current topology of the cluster the gateway is part of
sidebar_label: "Get cluster topology"
hide_title: true
hide_table_of_contents: true
-api: eJy1Vttu2zgQ/RWCT7uAEzndlyJvqesGXvQSJO4utoEfKHkss6VELUk5dQX/+86QlCXbai5AFzBgiRqeM8M5M8OGO5FbfnnPJ6q2DgxfjPgSbGZk5aQu+SX/lDohS8vcGlhWGwOlY05XWul8y/QqrIfN/jkXDh7ElknLKmEcmpzzETdgK11aQK6GvxqP6e//4Ml06XAnwYuqUjITBJ98tcTRcJutoRCn5HMEbF0kMtFRG/i3BusI3G0rQGOdfoXM4XtldAXGyRBVavQ3MPYU/IopaclBFk3Qf+GYMNB6jgsYRoyuxySMEVt8LWulRKpwyZkaRlw6KAaIbozeSFxislxpU/jQGf5EJGalXsLTgZDVbDl8SHUp8TjYbw8SXSbk6PTvHpvN3jJk9vkJlD02iZnJUWEjHpwLS3+84rsRX2vrhgnpSykK8LgGRIa0+TCBdQa/EVylzU/g6MszoB7zlXImCfLRVHdWrBClyGHJPGvQJL2VIesn3G3SX5zkPSXbZ+dFed/vfyL5mORWsvstzzw7o0nEx9hv/VsKofhvxcoxMmyrPgZBWRMslxsoB3lj+kccyrqglqZALKMfSukH/yhLkTmE4AtSHQjl1k/50zajYN069SwPwhZKZl12z0v0C/nRAUSg8+A3LRin1Q22CBn61WkO4mFEmwH192DfeNsZ6sQvx1K9kz8GckDY6HWK2L1GJct+331Oko+b1UHBTHRd/qQwO+5e5VCLtBWW6pKJzGhrf4E3bQkiwTvUgjbD/uAgWcm8NlipvR1s5bfEJjfYs1/iS5xhfz2W8JjpVndfAFJg12HjkPaOSHpymMeRdhsHHYpiR98LcGuNJc9z8E1BUE3wpJ2AuGTBbPxou294bRR+bcIk3V0mSUMtenfZUGvdJZsLtN8II8kH31a63r4StaLzUDoTyi8fXzYOOr6fw0fxHjT3Fu/1+PV4EMp3+4ODu53ezdnVzYyFkDxg/1LQQq6dqwYhg/FToLvdgk4NW4d02zvaEu8IgJI2V3XoOjF1kcsj03swwpXw8K6V0Z9/z30dU+P322NeD53gvQbCx+cXJ1GQo6TfTBcFdnQSNo5BGhm9kHq6Ru0DqYVuBqLoCCdhv9uy98GCRR2zC88ahELBWVRJjvh1eo6kSSZw31IkPwgmSZVOkwKvfkkkssmX6fTN9Gzy6cOHzx9n83/O3s8m04930zPEPXffnT+EClWCg7Xn1TW47oLYafcg+Ka7IP6iC2fMoYPvLqkUApKifOhNrKR7vvdm0d507nnTpMLCZ6N2O1rGuWq2uL7oiofewpCiKUal9w22lL8sg8r5KlO1vzAcX3RJfPuivp6Sav4D0YQjZg==
+api: eJy1Vk1v2zgQ/SvEnLaAEsXdS6FbmriBF/0IknQXbeADJY0lthKpkJRTV9B/L4akbNlR8wF0fbFEDd+b4ZsZTgeWFwaSWzirWmNRwzKCHE2mRWOFkpDAp9RyIQ2zJbKs1RqlZVY1qlLFhqmVX/eb3XPBLd7zDROGNVxbplbHEIFG0yhp0EDSweuTE/r7P3gyJS1KS/C8aSqRcYKPvxni6MBkJdb8IflNiWxwkcj4jlrjXYvGErjdNAgJqPQbZhYiaLRqUFvho0q1+o7aPAQ/ZZUw5CALJsyW3DKucfCc2VKYIboRE9eabyAC2VYVTyuExOoWIxAW6wmiS63WIkfDhFwpXbvQmZKMB2ImVY5PB0JWi3z6kFop7lpkf90LWwpCDk6/cthscc5WyuvjKUdsQlosUEME3jm/9Pdr6CMolbHThPRF8hodrkaelUIW0wTGaiELgmuU/g0cfXkG1GO+kmaCIB+VemfFai55gTlzrD4n6U161R9wD6K/WOQtJduq8yLdt/ufEH9xvk3Z7ZZnnp1WlMSH2OfuLUVf/Fd8ZRkZDlUfgiDVOCvEGuUkb5A/ApRtTS2tQp4HP6pK3btHIXlmxRphSVmHvLLlU/4MzchbD049ywO/hcRs5e45R57Dsu8jsMLSecDlAAa0ukZthO9XDzUIhxFsJrJ/BPvW2S7kSrnlUKrX4ueEBoQt2zpFPW5UQo777nNEPmxWewVzplr5m8LccY8qh1qkaTTynPFMK2P+gDdDCQol3/HMKj3tT6bkShStxpyNdrCV2xKa3GTPfokv4Q779zHBg9JD3n1FTJFd+I1TuXdAMkqHm3ClXYWLDnr6RVCjLVUOCRTomgKnmoB4uAEhAoN67a622w5aXUECnb9J+ySOO2rRfdJRa+3j9QwiWHMtyAfXVna9fcXbis6jUhmv3PLhsLHX8d09fBDvXnMf8N6cvDmZhHLdfu/grubXN+z0csF8SA5wPBQMkKW1zSSkN34KtO+XdGpZq4XdXNOWMCMg16hPW991gnSByyHTuzeCKDy8G9Lon/9uXB1T43fbg677TsCogcDJ8exBFOQo5W+m6rqVLrFl4a6MUUijvK5EhpQtNBnwekd45vfbDXvvLVjIYzZzrD5RKDiTxHEhbNmmx5mq44zXrcx5/JNg4rRSaVxzIeNAZOKv8/nb+dHZpw8fPn9c3Hw5er84m3+8nh/NjmfH9od1h9AoY2suR15doN0NiLvc3Qu+2w2If2jgDBpa/GHjpuJCUka50LtQSbew9WY5TDq30HUpN/hZV31Py3ct6g0kt8td8dCbv6ToFqPS+44b0i/LsLGuyqrWDQyHgy4l37aoL+aUNb8A0YQjZg==
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get cluster topology
+
-
+
Obtains the current topology of the cluster the gateway is part of.
-## Request
+
-
+
-Obtains the current topology of the cluster the gateway is part of.
-
-
Schema
brokers object[]nullable
-
-A list of brokers that are part of this cluster.
-
-
Array [
partitions object[]
-
-A list of partitions managed or replicated on this broker.
-
-
Array [
]
]
+
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.js b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.js
deleted file mode 100644
index 25b13ac45ac..00000000000
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.js
+++ /dev/null
@@ -1,48 +0,0 @@
-module.exports = [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/zeebe-rest-api",
- },
- {
- type: "category",
- label: "Cluster",
- items: [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/get-cluster-topology",
- label: "Get cluster topology",
- className: "api-method get",
- },
- ],
- },
- {
- type: "category",
- label: "User task",
- items: [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/complete-a-user-task",
- label: "Complete a user task",
- className: "api-method post",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/assign-a-user-task",
- label: "Assign a user task",
- className: "api-method post",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/update-a-user-task",
- label: "Update a user task",
- className: "api-method patch",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/unassign-a-user-task",
- label: "Unassign a user task",
- className: "api-method delete",
- },
- ],
- },
-];
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.ts
new file mode 100644
index 00000000000..a1342368b7a
--- /dev/null
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/sidebar.ts
@@ -0,0 +1,54 @@
+import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
+
+const sidebar: SidebarsConfig = {
+ apisidebar: [
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api",
+ },
+ {
+ type: "category",
+ label: "Cluster",
+ items: [
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/get-cluster-topology",
+ label: "Get cluster topology",
+ className: "api-method get",
+ },
+ ],
+ },
+ {
+ type: "category",
+ label: "User task",
+ items: [
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/complete-a-user-task",
+ label: "Complete a user task",
+ className: "api-method post",
+ },
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/assign-a-user-task",
+ label: "Assign a user task",
+ className: "api-method post",
+ },
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task",
+ label: "Update a user task",
+ className: "api-method patch",
+ },
+ {
+ type: "doc",
+ id: "version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task",
+ label: "Unassign a user task",
+ className: "api-method delete",
+ },
+ ],
+ },
+ ],
+};
+
+export default sidebar.apisidebar;
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
index b9b6246ae24..a4c82e74fcc 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
@@ -5,51 +5,145 @@ description: "Removes the assignee of a task with the given key."
sidebar_label: "Unassign a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztV01z2zYQ/SsYnJKpJcqpmya6qY7SurUTjyy107g6gORKQkwCDD4kqxz+9+4SpL5bdzI5+uAxAe6+t4vdBy1L7sTc8v49n1gwzAn7wKdnPAWbGFk4qRXv8xHkegmWuQUwYa2cKwCmZ0zU9mwl3aJ+N5dLUOwB1l1+xgthRA4ODKGXXOECoTyyjNHpN1ijjST0QrgFPhv44qWBlPed8XAYwhjhEZhYicm3wRKTTRaQC94vuVsXRCKVgzkYfDXTJhcubL2+4FU1JSJbaGXBkser3gX9OybbMLCVsMyrJu+UWZ8kYO3MZxnmWZ3xi17vSYijE2KJUEo7FsMOdpfdaAMsBSdkZpnA58LopUyRVqoaoA2exTpdd/9SmGOiMV3lKAZRFJlMBMUQoWecQf7dZ0sBlTuntB/pgN0Gy4aX6fgzJA4LzYJhHNjvR+8v2duLH36cvlg4V9h+FK1Wq66ZJR1IpdOmq808wiX9kd3LLsNTwBxysaY8RYpmyCkyyqoA4yT2lC0gkTOZMKfrBJuwGZUy5NcUNYRFjbVx3pZ8U3rrjFTz3cp7I/lhNw3YZHTF8FyVk7M1OhxT1z4z4TPCELH2rh9nQj1QxZ102UnSQxbr81yYTdfuEyCQdcJ5+2Tnfv/qCJv665fx+JYFCJboFBj6II+0LRElkUslc5/zPrYprsRjWL3u9SrCpIr/j0wUg8cC069b6zAdbI5827d1YlJhXCr5VpXRRs7lIS8SbWvBmyZ+FzKqqqpW5tPiPlYm6Z2kOdNepY3C334FDtahEe3KaEyEKgUs8cZgcnh3PIv9WezPYv9GYseXOGwsNI4PSJLh3FGPIDhZ9HlEMu2QTG1U7gwgVdQOMzREgFm2s4o3eEy8DCKqsPfLhbau6peFNq6KludovxRGCgyiLii9DmJrmyjTicjq7VPFpBc0EIUh6hMAKuZnvB1WIowUxLOP96b3pncSikzbswpAo+HdmA1ur1hIKfTezn3QQpKwT0IG46dA61nKAt5n0q3vyCWcRQx4lZmBp6Pf9EPDVSPTOhjhTnh433bJr3+M60JLNdO1e1Pw/SDo+LFWIeJe9/y4sTBQ0kei89yr+pLE5trc0QEtybx1lMoZx3sU8J4lxmZODSaXwd+t2XWwYL8HXnZes4ZGaW/IOeL7uIukUSLQLxXR3wQTxZmOo1xIFTVENvo0HP407Fx+vLmZfLga/9m5vrocfrgbdhC36x5dfQgFdkku1E5Uk2ZUxKbZ/PQcJl9ufyO+bnBvSubg0UV4DeCMXjWZlo2i7vlWUejQ3x/qN6LC/gjCuOdlGQsLE5NVFW1/8WDWuD/d6qgWXiotPaOIZyKzhx8Bu5m9GDWfCy/Zf30anMyl2RRqXes487TCRwQ5+EKppmi+AJFir1J8wWKAHwCF2/H9119iksjmWno3vB6Oh1jZfwDR0aEr
+api: eJztV01T3EYQ/StTfbIrQloc4ti6EbxOSMCmYEkqJhxGUms1RpqR52MXRaX/nuoZ7Qe7JKRcPnKgWEk973VPvzdq9WD53EB6A9cGNbPc3MFtBAWaXIvWCiUhhUts1AINsxUyboyYS0SmSsZ9PFsKW/lnc7FAye6wiyGClmveoEVN6D1I3iCk4AzqGTd3v2EHEQhCb7mtIAKNX5zQWEBqtcPdFGYVEjCxEpNbJUtMJq+w4ZD2YLuWSIS0OEcNEZRKN9yGW6+PYBhuici0Sho0tOLV5Ij+7ZOtGdiSG+bkWHfBjMtzNKZ0dd3FMERwNJk8CbG3QyznUirLMtzCjtm50sgKtFzUhnGNrNVqIQosmJAeYJU8y1TRxX9JiCBX0qK0lANv21rknHJIWq2yGpvvPhtKqN/apYeZHrOLEDnyMpV9xtwyblgIzAL7zeX7E/b26Icfb19U1rYmTZLlchnrMj/AQlilY6XniS5z+qO4lzGbVaiRNbyjOnlRCOLkNVXVorYCDTMt5qIUObPKFzimzaiVob6xqSEtEtZ68abl69Ybq4Wcb3feaQG7ajpm15enTBQorSg7Ief71H5NyV1NGDxTzqZZzeUdddwKWz9KustiXNNwvVbtQ4IhAmO5deZJ5X7/ag+b9PXLbHbBAgTLVYGsVJrZSpgVERXRCCka10B6NJlE0PD7cPV6MhkIkzr+PyqRDO/bmksvrd1yhGTNRre+MCGN5TL/Vp1RWszFLm8Mw6YXMIr4XahoGAbvzKfNve9M8jtZs1ROFqPD334FjjAr0y61knPfKWS50xqlrbtnsz+b/dns38rsQwQN2koVkEKBNVr0I4itIIWEbHpANjVJvzWADMlqmKEhAvViNas4XUMKfTDRkCZJXyljh7RvlbZDsjiECBZcC57VQZf0OJhtJaJa5bz2tx9rJj2ggSgMUZ8QM2Q/c4tLHkYK4nmI92byZvIoFIWu9ioAXU6vZuz44pSFkoL2ts6DFSQZ+1HIEPwUqJ+lDOZOC9td0ZKwFxlyjfrY0dav9TByeWS6DkEQjT/er1Ty6x8z32ghS+WXjw1/mARtP2oTMp7Eh/vCujj1/shV0zjpD0k535zRAS2vnbFUSgS1yFEaL+BxTg0hJ2G97dhZiGC/B1526FmDUFYn5FzYymVxrpok542TBU/+Jpgkq1WWNFzIZCQyyafp9KfpwcnH8/PrD6ezPw/OTk+mH66mB4fxYWzvrd+EVhnbcLmV1fU4KjK+efXsFt9v3hFfN7iPLbN4b5O25kKSgHyl/eioG9g4CiJIHw71a1PdRqMxbqDvM27wWtfDQLe/ONQdpDe3Gx954xXC0O8C0pLXZvcjYLuyF5fj58JL9l+fBo/WMt7ksvM+rh1dQQR32O18oQy3QwQV8gK1zy9EHOc5tnZr7b++icki62Pp3fRsOpvCMPwD0dGhKw==
sidebar_class_name: "delete api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a user task
+
Removes the assignee of a task with the given key.
-## Request
+
-
Path Parameters
+
-The user task was unassigned successfully.
+
-
-
-The user task with the given key cannot be unassigned. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
index 71af92194c3..8d7ae58e90c 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
@@ -5,69 +5,211 @@ description: "Update a user task with the given key."
sidebar_label: "Update a user task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update a user task
+
Update a user task with the given key.
-## Request
-
-
Path Parameters
Body
changeset objectnullable
-
-JSON object with changed task attribute values.
-
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `candidateGroups` - reset by providing an empty list
-- `candidateUsers` - reset by providing an empty list
-- `dueDate` - reset by providing an empty String
-- `followUpDate` - reset by providing an empty String
-
-Providing any of those attributes with a `null` value or omitting it preserves
-the persisted attribute's value.
-
-The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
-This ensures correct event emission for assignee changes.
-
-
-
-The user task was updated successfully.
-
-
-
-The user task with the given key cannot be updated. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
index 66890419109..c6c9d707bbc 100644
--- a/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
+++ b/versioned_docs/version-8.5/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Zeebe REST API
+
API for communicating with the Zeebe cluster.
-
- Authentication
-
+
@@ -48,7 +56,7 @@ API for communicating with the Zeebe cluster.
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx
index 5370a7cc20c..8b8d03ceb6e 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/activate-jobs.api.mdx
@@ -5,52 +5,288 @@ description: "Iterate through all known partitions and activate jobs up to the r
sidebar_label: "Activate jobs"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Activate jobs
+
-
+
Iterate through all known partitions and activate jobs up to the requested maximum.
-## Request
+
-
Body
required
)\n","type":"string"}}>
+
-The list of activated jobs.
+)\n',
+ type: "string",
+ },
+ worker: {
+ description:
+ "the name of the worker activating the jobs, mostly used for logging purposes",
+ type: "string",
+ nullable: true,
+ },
+ timeout: {
+ description:
+ "a job returned after this call will not be activated by another call until the timeout (in ms) has been reached\n",
+ type: "integer",
+ format: "int64",
+ },
+ maxJobsToActivate: {
+ description: "the maximum jobs to activate by this request",
+ type: "integer",
+ format: "int32",
+ },
+ fetchVariable: {
+ description:
+ "a list of variables to fetch as the job variables; if empty, all visible variables at the time of activation for the scope of the job will be returned\n",
+ type: "array",
+ nullable: true,
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "The request will be completed when at least one job is activated or after the requestTimeout (in ms). If the requestTimeout = 0, a default timeout is used. If the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.\n",
+ type: "integer",
+ format: "int64",
+ default: 0,
+ nullable: true,
+ },
+ tenantIds: {
+ description:
+ "a list of IDs of tenants for which to activate jobs",
+ type: "array",
+ items: { type: "string" },
+ nullable: true,
+ },
+ },
+ required: ["type", "timeout", "maxJobsToActivate"],
+ title: "JobActivationRequest",
+ },
+ },
+ },
+ }}
+>
-
Schema
jobs object[]
Array [
customHeaders object
-
-a set of custom headers defined during modelling; returned as a serialized JSON document
-
-
variables object
-
-All variables visible to the task scope, computed at activation time
-
-
]
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
index d80124c01ce..8f41c021eab 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/assign-user-task.api.mdx
@@ -5,55 +5,259 @@ description: "Assigns a user task with the given key to the given assignee."
sidebar_label: "Assign user task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign user task
+
Assigns a user task with the given key to the given assignee.
-## Request
+
-
Path Parameters
Body
required
+
-The user task's assignment was adjusted.
+
-
-
-The assignment of the user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
index e531316f43d..83f4c6c24db 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/broadcast-signal.api.mdx
@@ -5,52 +5,223 @@ description: "Broadcasts a signal."
sidebar_label: "Broadcast signal"
hide_title: true
hide_table_of_contents: true
-api: eJztWMFy2zYQ/RUMTu1UFpXUSV3dFNlpnaaOx5Lbg+LDkoQkJCTAAqAlDYf/3l2ClChRctOZHGWPZYJY7Nt9+xYkVHAHC8uHMz6RCwUJf+rxWNjIyMxJrfiQvzMa4gisswyYrYz6vMeN+CcX1r3T8YYPi2oojYj50Jlc9HiklRPK0RRkWSIjIHfBF0s+C26jpUiBrtwmE4iiwy8icug3MzoTxklhK7sK7w5SQaP9wKZLwRTOMD1nDq+9LXOahU3IFGgNYJ2RasHLHn8GIyFMPADEsSR/kNy3gH0OXbgaYuuBAZHyYfLpjvkEWoB1RgiIRIByt/HxFG6vmwS8HV6CY3qlbCurI4mUvRbpszZTWEInXULGvqjbEj74ouFiv9xmWllPxOvB4Hh8dc4rTHWP1+9a4T/E5jh6riSG3CKpqTKR1ImphpIY2UIYvDHXJgXnb729/O9i1CX4f3Ctipzk3TNdE395imuk5lnGImYxOGDSMqUdqi2R8QuM4yLUYvpTl/l9gBG795YsFg5kUkuWNOwNQwSWis0e3o/Zr5dvfnn6YelcZodBsFqt+mYeXQhsFm362iwCHNIf2f3YZxi8ESyFDQsF2/UU29Wa2UxEci4jalDnc62CIRL7n1WncQ6F4meLA9JbJc6N5IdNO2KPD7cMKVVOzje4oAtdrZlDnpAPCHXuhmEC6ivflbMLeohi8zQFs2lUsw+AjqwDl7fSOCHRn193fJMsfp9O75l3wSIdC4ZrEAf1UQNREqlUMs1TPkR14QjWfvR2MCjJJ1X8GzJRTKwzTL+S1mE6KI5UY529tyoxqTAuFX2vymgjF/IQt7/XWrWIr31GTUNdvrh51Z0017k6d9K5k86ddLKT3hx7NGEuxLIhHQpjkDIdRbnBNw+2Wsqkch8Jaxvs+t3w3GnnTjt32vFOw8lUuKXG91CeaVtJB9wSR4F/Ztlg+6qJc1aYZ2HonFZgZEgKL3zLlKj0YokOymGRaePK4JnqsXfGoWnfWo1kEh1BsvSw3dLRRPtgNYYUn5vArtjDzWTKfgMnVrCpqCTIfddXg6vBUa9kesLj6P6W+Qy98FqbQeOWuvqoW2/8LY7L8omIxI1Lus2Elnl6QgFGmFFO7G8FUeNV3mnsjfCOv3jfyOTD39Oq0rSRPeyOxDdrSDPfhu0j7E5n7QLtnUpaB1Wp5roKqVZRNzlyhLLwbAz6r7qKRQKo8SKd4tpq90XVrqRb4rl15y9KcuuIpB7HLVrQSQVxlY+5MfvoZ9hfHpG96lOhvRqbTXeBnvOwj3BB5Jdt/4eJDoMUpApqCBuMR38+3l2PLj7ejm/uJjcX6LHv1q4ilJoiBdWKY3uaqt/qDpMtdg+bU19a1MV1Yu0C3DGkIpqrDIq6/ZqDtKVSbxsQheObaMaLIgQrHk1SlnQbK27w6Dp72pWURuh2KSBGxVDHfqXTLR/76C6mFASZJzkF0zk8l71mxSiKROZetH1q7SP3nyZTCrv+SibFXRfvGljR1zX4OeSf8RcHumKsEn91v+C4ey5yWJC990s//wIkFT00
+api: eJztWN9zm0YQ/ldu9qmdYiGnTurypthO6zR1PLbcPrh6WGAlLoE7fHdY1jD8753lQEI/7KYzebRmNBKwt9/ut/sdLDU4XFiI7uFWLhTmMAsgJZsYWTqpFUTw3mhME7TOChS2NRpBAIYeKrLuvU5XENXtoTSUQuRMRQEkWjlSji9hWeYyQXYXfrHsswabZFQg/3OrkiACHX+hxEEApdElGSfJtnYt3hUWxEfbgU0zEgoLEnouXEZdbMJpEfchc6AdgHVGqgU0ATyikRjnHgDTVLI/zK8HwD6HfbgOYu1BIJPy8fbzlfAJDAC7jJoAHClU7jI9nMLleZ+AtxMuQyf0UtlBVgcSaYIB6fdDpmYBOOlyNvZFXZfwxhcNmsYvt6VW1hPxZjw+HF+X8xLtNq/ftcJ/0OoweqXkQzUkqa8yk7QXUwcllaMFGQhgrk2Bzp96d/LfxehK8P/gBhV5lnfPdEf8yXNcl0Y/ypRSkaJDIa1Q2olHzGX6AuOl0XFOxU/7zG8DTMS1txQpOZR517Lcw94wplRIJe5vPpyJX0/e/jL7IXOutFEYLpfLkZknR5RKp81Im0Vo5gl/2e7HkZhmZEgUuBIxiY2mxKbWwpaUyLlMWKDO59oGwySO/lF7wtltFH+13iF9UOLKSNgV7UTc3VwKmZJycr6SarEP3a6ZY5WzD4x15aI4R/UVNuXcB91FsVVRoFn1XbMN0ARgHbpqkMYzLfrzmz3f3Ba/T6fXwrsQiU5JzLURLpO2B+IkCqlkURUQnYzHART45I/ejccN++SKf0MmStBTmaNqW2s3HalEoQ11/dMmJpV1qJLvVRlt5ELu4o62pNU18bnPqBfUyYubV6ekua7Uq5JelfSqpGeV9PbQrWmiBLNsuA/JGG2ETpLKGErFMpN56z4ha3vs7tnwVWmvSntV2mGlNQEU5DKdQgSltm3roMsggtDfs2y4ftSEACyZRzI8p9VQmRwiqL1kmigM60xb10R1qY1rwkeux9aMw5e9tPqWyXWCeeZh90vHF4aD1RkWlUpRnIqbi9up+A0dLXHVUsmQ265Px6fjg17Z9BmPk+tL4TP0jTfYDHq3rOqDbr3xtzhumhkTmVRGutUtL/P0xISGzKRi9tcN0eG13vnYG0HQ/fnQt8nHv6dtpXkju9mMxBdPWJRehsMRdtNnwwJtTSWDQVWquW5D6rpoPzl2RMZ6Nsaj4/2Ovb5shZfooqhUu/uqhVhKlwkckJXklXVMUgC5TIgnlagG5WPuzT75K+IvjyiOR1xo3439pruQLqviUaKLMPHL1r9xruOwQKnCDsKGZ5M/767OJ0efLs8urm4vjo5H45F7ci2hLIoC1SCO9TTVPdXtJltvbjbPvbToiuvoyYVljlIxzW0GdSe/fpC2XOq1AGdBJ6J7qOsYLd2ZvGn49ENFZgXR/WxTUj5qAsgIUzKtYr/ydAtnPrqjKQfB5nnFwewNz03Qr5gkCZXuRdvZYB+5/nw75bC7VzKFTnmNwSW/rsElRAAB6JattvHbczXkqBYVLtjW++TPv0I6PDg=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Broadcast signal
+
-
+
Broadcasts a signal.
-## Request
-
-
Body
required
variables object
-
-The signal variables as a JSON object.
-
-
-
-The signal was broadcast.
-
-
Schema
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The signal is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
index c8c484fd2ab..eb8e1dac584 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Camunda 8 REST API
+
API for communicating with a Camunda 8 cluster.
-
- Authentication
-
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
index 3125499a15d..987fd254367 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/cancel-process-instance.api.mdx
@@ -5,51 +5,206 @@ description: "Cancels a running process instance."
sidebar_label: "Cancel process instance"
hide_title: true
hide_table_of_contents: true
-api: eJztWFtv2zYU/isEn1ossZwu7VI9DPDcdMvWdobjdA9pHiiJstlSpEZScQxB/33nkJJvstEU2KNTpJHIcz/fR+mopo7NLY3v6cTolFtLhLKOqZTThzOacZsaUTqhFY3pGJelJYyYSimh5qTc0xnQM1oywwruuEGrNVVwA7qt5E0r+BdfgahAqyVzC7g2/N9KGJ7R2JmK77ueLTj5xldE58TB5b5f4jRJfXQYgU0XvGA0rqlblehcKMfn3MBWrk3BXFh6c0mb5iF45tb9prMV6mwCyZm0EEmqQV053GNlKUXKMKjoq8XI6r43nXzlqQNnqpKSJZJ3KUHUJTdOcIvSeO0tTXnODceKw+pu2iNiuk2ffrrQliuSrHwVKssNXDBHlkJKkkBdmHFYIwa3hqfaZBb+2ko67FZudAHywpK178EX9bGyDnV/JUMicizto8h4BjuQwvcKeEYLoURRFTS+aBqQFw7zbaEy2W36NBQaqo6iEFeplQ3FeDW87Gc/O9RpiD50GkKkYOZyODyq6RMhGXMM1ZR25JFJkSFGjjQVlKBhxU/95u43ZhIkScYdE5KEphNmSRBMwLFQ5H76fkzeXr7+5eHFwrnSxlG0XC4HJk/PeSacNgNt5hHc4i/KvRwQCN5wUrAVdoVlIAY+mSQb+BBb8lTkIkXct3zwwWC7dhq3xuIu9sLuGrHWGcDHdncrI+g+B0fkbnpDoKTKiXyFgOq59jo5A7yBPEt05eJEMvWNbqDRd7rvxVZFwcw217ccgCEAgqvsd+n986uebYTFH7PZhAQTJNUZJ6ATSNE6GmyDGtAFd+wp3L0ZDhu0iR1/RiaK8KcS0vfQ2k8HwFFo6HOw5hNbn7z/T2e0EXOx7xccbdG0BfG7kFHg5eWPUBE5letKnTh14tSJU0c59frQQwpywSobxCE3Bkqm07Qy8OpBlgsh14TrfLfvKSemnZh2YtphpsEmjB4LneFcoa2HDo4XMY1aMp13Ydqo7s8kTRTeLaVPGkcJbh67SaYyUDZaB1I1wIUa3sZdE9elNq6JHrFjj8wIfOX3DcbtQL4OVFKnTC5CYP3m4gaOS13SY1bAk5WRKzK9vp2R35njS7byxUaXu6avhlfDg1ZR9IjF0eSGhAwDNLeOi84s8v6g2SD8HMN+yLIcjjbhVreoFsqTcGa4GVXYnzVkWn/eOt4HIVgJF+87IP35z8xjAY+66WaAu35iRRmIemi+Gnqc5to7XI8q+6FjH6HpIdfh4KKPWEgPiZfqAnT96QuoXQq3gNl4Yy+VMFphCc4oHNEcZh302w7EndiHsEM+B4/kYoBtDFjrDt05WK6SAbgDfHq19d9E6iQqmFBR68JG49HHu0/vRucfbsbXn26vz8HiwD05Xy4kRcHUThwI+N7L3X7O9eaZ88zvAG1DHX9yEZwjMOs3bV51S8p72iMl6MUHPxXs8BLwFLh1T+s6YZbfGdk0uAxAMDDF3z9sqOi5mwmL15uh/mhyL6bt/P+S/NBHh4PptotMrfzZICu8g0uwevibSPMAWgvOMsA8xh0ExyG68xma2xjqfY1ozjqNUZry0h2R3XlNQHKuz8zJ37cz5Fr7KaSAJwysGrbEDzTwf0y/wD+40b5ynsZ+vabwpJhXbI7ywS7+/AfloVm8
+api: eJztWFtv2zYU/isHfGoxRVK6rOv0MMBL0y1b2xmOuz2keaCkI4stRaokFccQ9N+HQ8p3B22BPcaAYYk8PNfvo3nYM8cXlmW3bGp0gdaCUNZxVSC7i1iJtjCidUIrlrFLGpYWOJhOKaEW0B6siVnEWm54gw4Nae2Z4g2yjI2S16PgX7hiEROkteWuZhEz+KUTBkuWOdPhoel5jfAZV6ArcDUe2QWnofDekQe2qLHhLOuZW7VkXCiHCzQsYpU2DXdh6OUFG4a7YBmt+02XK1qzdaTi0mLECq0cKkdzvG2lKDg5lXyy5Fl/bE3nn7BwLGKqk5LnEtchtUa3aJxAS9L07DXNsEKDlPGsPwh7AmY96cMvam1RQb7yWegsGnA1d7AUUkKO0HLjKEdcSjBYaFNaMGg76ahaldENuFpY2NiOP6p3nXW09ldIQVSU2ntRYhl/VCz6agIj1gglmq5h2fkwRMwJR/GOUJnuF30WEs2GgUQN2lYrG5LxIr04jn5+qtLCjpXGMmZDxC7S9NGVPhAoueO0TGkH91yKkjDySFFbo3OJzQ/HxT0szDRIQomOCwmh6MAtBMEcSxAKbmdvLuGXi59+vntWO9faLEmWy2VsquIMS+G0ibVZJKYq6Etyz2OY12gQGr6iqvCyFGSTS9jCB2yLhahEQbgf+eCdoXLtFW6DxX3shdkNYq0zQi12q9sZwQ45OIEPs2sQJSonqhUB6si0X1PxTpIOnuvOZbnk6jPbQuPY6KEV2zUNN7tc3zEwRMw67jr7VXr/+OJIN8Hij/l8CkEFFLpEqLQJpBgNxbugvkjTiDX8Iby9TNOBdFLFvyESBfjQSq48tA7DEQoabXDEjw9ss/P+P5XRRizEod2Y7dJ0BPHrEFHg5cX3UJE4VelOPXHqiVNPnHqUUz+d+pOaKKAsG8IhGqMN6KLojMESlrWQG8KtbY/nlCemPTHtiWmnmTZErEFX65L6Cm09dKi9yFgykuls7aZN+uOeZEjC2VL6oKmVQHO/7mQ6I1nG+kCqIUuSvtbWDVnfauOG5J4qds+NoCO/LzBNB/KtQSV1wWUdHDsuLk1Qu7QO+pI3nSo5vILZ1c0cfucOl3zlk00m91W/Sl+lJ7WS6CMaJ9NrCBEGaO5sF2u1xPuTaoPwtyj2TZbFojPCrW5oWUhPjtygmXRUnw1kRnteO70HIRaND2/WQPrz37nHAm11s20Dd/XAmzYQ9VR/lXqcVtob3LQqh65THdHYEGsanx8jdnrtiVfopumU333VApbC1cB3UlHIzjpKQcSkKFBZ79fYEK/F3oYZ+CdYhPOYyhiwtt50F8LVXR4XukmKsGzzm0udJw0XKhlN2ORy8u7D+9eTs7fXl1fvb67OzuM0dg/Op4tI0XC15wcB/uhwdxhzv/3P+cZ7gLGgDh9c0kouFEHMx9WPpLxlR6RkEctOXhXs8fIuGrl1y/o+5xY/GDkMNPylQ7Ni2e3dloqeu6Ww9Lxt6h8N7tls7P+fw3ddOpwMdxzkauX3BtnRG4vYZ1ydvhMZ7oaI1chLNN7vIHgZvDubk7qtoqPbiCFar5gUBbbuEdm9YwKRc7NnTv++mRPXxquQRpe01vAlXdDwZXBe+6x5CvuxnkmuFh1fkGzQSZ//AJGmWMA=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Cancel process instance
+
Cancels a running process instance.
-## Request
+
-
Path Parameters
Body
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
index 6dcef1c1af3..9f8de3c3c9c 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-job.api.mdx
@@ -5,59 +5,247 @@ description: "Complete a job with the given payload, which allows completing the
sidebar_label: "Complete job"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SsYnJKpTSqpkzq6qYrTOk1Sjyy3B8cHEIQk2CTAAqBkDof/vbsAKerDctKZ9CZnHBMEsG8X+x5AbE0dm1s6vKUfdULvTmgqLDeycFIrOqRjnReZcIIwcq8TspJuQdxCkLlcCkUKVmWapSdktZB8QViW6ZUlPMyRau6HMms1l8yJlFhhlpIL4ph9iL4qekILZlgO9g26UFMFDUAFqD9EBd0SfSiYW8CzEf+U0oiUDp0pxa6jU0B6EBXRMw+KzjrduSIimG/5QuSMDmvqqgJRpHJiLgx0zbTJmQuv3p7RprkLcMK6X3Va4ZwefcYyC/Bcw3TlsI8VRSY5Q0/ie4vu1PtoOrkX3GHIRhfCOCks9i6ZkSzJQoOlqUQrLLvaGHQo3PXUzUjX0WOqMOxdeFVmGc4KdpsGRkiHTSRAm27AmITwYS1wiBG20MoGL18PzvDPvkMelq0JgAkvORfWzgCziigYOhsMnpm7zS5MJ2dKaUcS0RuNyGdtBEmFYzKzhMEzLOlSpoAnlZ/fuUsSyF4g2oF0wUxYi/yn/bRtuzgiV2Fki0vCegK5SRiYBPTbyYcxeXf25pe7FwvnCjuM49VqFZkZPxWQW20ibeYxNPEXx72MCIQPMeSswjB7CpCeKMQWgsuZ5JhpDLB1m2ByQ3zPsyz0rrlonQF1bhK/NJLucmxEbiaXBNZVOTmrOjlvQfs5M1ZmaIMlunTDJGPqgfa02gfdRbFlnjOzlu42ABiyjrnSflO4P7/es43E+n06vSLBBHAoFQTmAI60HRAGkUsl8zKnQ+AntNhjaL0dDBq0iRn/jkgUEY8FhO+ptRsOkCPveesDkwr8UvxHZUYbOZe7uAC0IfGWxO9DREHbZ8/KeV+SqHDU5EyXKo2O0jpK6yitg9J695+kBSvXnmArowEa1xZOvtIYcAdO0OPJd5TnUZ4/TJ5vnvoYhVhwlQ3yUBgDS6a5V2CKt5zMm8dv2g67vScctXbU2lFrh7QGnXDLX+gUr/PaeurgrX5IYzgKbVyHG38T8/UFFG/swiy7ykBpYG1oHZTTAOHrBdhphnWhjWviJaZl6y6N3UFhHXMyzVm2COj7GcQOLD90kY1ZDt+3jJyTycX1lPwGJ/GKhUssQm6bPh+cD560ikMPWBxdXZIQYeDfxp7QmUVxP2k2DP4ew76WYQXsYNJV1zgtLE8i4PPBjEpMwpoXLZ63ju0wCN6Ehw8dWz7+PfUJx/1s0tdJLh4ZZm+3rNF4Es60B2opsu8y5g+SHWIcRK/26QhhoaqAIjDXb61ASf8VxTaWgGeldRj6CYX9V8C3EOK2haVu2KfQQ/4KiORVhOkLHOt21DlYLpMI4GIepq3/JplO4pxJFbcQNh6PPt98eT86/XQ5vvhyfXEKFiP36PwyIeNzpjb96Ko1wPvdQOv+FPnfy29t3p14dDHsKVIhE/0y1K1Ab7EYZ2HocF2U29AocCvo7JbWdcKsuDFZ0+BrIIWp4P1dL0uv41RafO7raAdjfzFpS24vybeLe08G0r5kqvKbQ1ZiCx7BVF9kbO5g5EKwFIiODobOcXDjdIom+sl7lb7mpJsx4lwU7sDYrQ8AVOR6N7z683qKAmvLjDmcHfDWsBVWPOH/If0K/6Ch/RJ57fr3NYUzYF6yuS+Yerv48y98k4hh
+api: eJztWE1z2zYQ/SsYnJIpTSqpkzq8qY7TOk1Sj620B9eHJbgSYYMAA4CWNRr+984CpD7tJJ1Jb9KMRiKB3beLfQ8kdsk9zBzPr/l7U/CbhJfohJWNl0bznJ+aulHokQG7NQWbS18xXyGbyXvUrIGFMlAmbF5JUTFQyswdE9FG6lmYCs4ZIcFjyRzaeymQeXB36T+aJ7wBCzV6tBTCkmuokef81hR/4IInXFIMDfiKJ9zil1ZaLHnubYu7gU4qZHe4YGYaQClYb4ZQMOUJd6LCGni+5H7REIrUHmdoecKnxtbg463Xx7zrbiIcOv+rKRdks0afgnKYcGG0R+1pDJpGSQEUSXbrKJzlPpopblF4StmaBq2X6Gj0HqyEQsULKEtJXkBdbEx6Kt2V6Wamq+ypVJT2LrxulSKr6LfrEu6lp0siQF9uafRlTJ93HU2x6BqjXYzy5eiYfvYDCrCwIgAVvBUCnZu2Si1S3iX8eDT6iu02u6icArQ2nhW4dpqyj8YiK9GDVI6BRdZYcy9LLJnUwX4IlxWmXESiPVGuxppCYf3Tftm2Qxyzizizx2VxPRk4FicWEf368t0pe3P86pebZ5X3jcuzbD6fp3YqjrCU3tjU2Flmp4K+NO95yiYVWmQ1LCjNNQXYmijMNSjkVAqqNCXYh82ouDG/r7Msjq646LyVerZJ/NZKvsuxMft8ec5kidrL6WKQ8xZ0sJlCq8gHFKb1eaFA3/E1rfZBd1FcW9dgV9LdBugS7jz41n1TuD+/3PNNxPp9Mrlg0QUTpkQ2NZb5SroBiJKopZZ1W/P8eDRKeA0P8er1aNSRT6r4d2SiGT40CnSg1m46UrN6zduQmNTOgxY/qjLGypncxU35psR7Er+NGUVtH39VzvuSJIWTJqem1WV6kNZBWgdpPSmtN/9JWtINT7C5NXoW1haZaK1F7dXi8OQ7yPMgzx8nz1ePvYyONaNVtsRDtNZYZkRQYEmnHBXc0zvtgN2fEw5aO2jtoLWntNYlvEZfmZKO88YF6tCpPufZrSlctown/i4TqwMondjR3g+dgdYqnvNlVE6XZ9myMs53+bIx1nfZPZVl6yxNw1FhA3OUEaCqiL5fQRqg9sOQ2SnUrS6BnbDLs6sJ+w08ziEeYgly2/XJ6GT0qFea+oTH8cU5ixlG/m3sCYNbEvejbuPk73EcehkORWulX1yRWVyeAsGiHbdUhBUverzgna7jJJ70f94NbHn/9yQUnPazy3Wf5OwBqHq7bY0ukHBqAlBPkf2QqX5oXcxxlL7Yp+PFeVCVMHXd6rC16ll8i4KNJRCqdZ5ST7iSArUL8fSNpWHahzjC/oqI7EVK5YscG3bUmfRVW6TC1JmIZqvfQpkiq0HqrIdw2en44+dPb8dHH85Pzz5dnR29SEepf/BhmYjxNejNOIZuza0pdhNdrp8i/3v7ra+7xwefNQqkJiaGZVj2Ar2mZpzjCc9XTbkNjd4kvc6u+XJZgMPPVnUd3f7Sol3w/PpmLcug41I6+r/uoz2Z+7PLvuX2nH27ufdoIv1N0IuwOaiWrnjC73CxbjJ2N13CK4QSbQgwDp7GMI4m5GJtvNfp65LBYiwENv6JuVsvAKTI1W548efVhATWtxlrU5KthTl1PGEeAzZheYJuw70lV6BnLcxCszT4pM+/bfWHZQ==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete job
+
Complete a job with the given payload, which allows completing the associated service task.
-## Request
-
-
Path Parameters
Body
variables objectnullable
-
-The variables to complete the job with.
-
-
-
-The job was completed successfully.
-
-
-
-The job with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
index bc4353d7eaa..632614213c8 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/complete-user-task.api.mdx
@@ -5,59 +5,253 @@ description: "Completes a user task with the given key."
sidebar_label: "Complete user task"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtz2zYQ/isYnJKpTCqpkzq6qYrTus3DI8vtwfYBJEEJCQmwAChZw+F/7y5AihJpTdxOjnLGDkEs9vl9ALgVtWxp6OSO3hquiWXmG30Y0YSbWIvCCiXphM5UXmTcckMYKVsxshF2ReyKk6VYc0m+8W1AR7RgmuUgq1FpRSUMQAOuWsCiP/kWZAQqLZhdwbPm/5RC84ROrC553/IC1INiolJnqTNuFYkbr9CqiVc8Z3RSUbst0KCQli+5hqlU6ZxZ/+rtOa3rB2+UG/urSra4pvMhZZkBJ2IFy6XFOVYUmYgZ+hN+NehUNbSmoq88thi9VgXXVnCDs2umBYsyP2BJIlALy673hI4FvVu6H2kvB1gADL7vhCyzDNd67fWIsthrrnqGpiQujVU58QJgNCvRCLOgO8tIxGEm5sYI0EZSDZKddQ5Ft4ZobsrMCrn083YlDOEyKRSkmwi5Vj53AblKiVSWQIbWIuHJiIjGSsJTBiow0HvahnpPg3vZxWasBhPD2CA4KywOHX4RYg1YwebcVxlKjnLgaKGk8cV4PT4fpmNxmF1mdolPiCldIlIwDzAHdefj8Xc1DAhCYiYxCZDYneqAfFKaQxYsExkwDJ7bHEH+3PrWdRIBYH1ejiAUVkJy8p+GSO1X/tpLNnaJBw+BmL1g5K3fzT/MyLvzN788vFhZW5hJGG42m0Cn8RkHOCsdKL0MYYi/KPcyIJAEiCFnW4efHepJxw1iCh6LVMRYcwywcZtgtQ/qfoRYfrYaoGPH9VIL2qfVlNzOrwjkVVqRbhGxA9NujUMjyLNIlXYSZUx+ox3Ohkb7VkyZ50zv9qxDA6DIWGZL89296ufXA90Ir98Xi2viVQCGEqCl0p51jSEMIhdS5GVOJ4BSGLFHP3o7HteoEyv+jEgk4Y8FhO+g1Q8HwJF3uHWBCQl+yfhHVUZpsRR9u2Boj/MNiN/7iDzPz59B7SExke3IzFSVMglOBDsR7ESwowR79z8IBvlrTrONVuAAZhhOwVJrcArO1NMpeCLpiaQ/jKRvnrqeQiyYZY045FpDylTsGJiQzUpkTr277je2m8+kE9dOXDtx7RjXYDLndqUS7Gko46CDrY0JDfFAPMMD0YTVXgekDuPdNyr2Lrhet+2SUkOaaOVJVAP2qxWorCdVobStwzVW6KCrgNOebC2IMvjizlbekWExcQJ7Mm2QM5bDhZeRCzK/vFmQ3+BQ3jD/hYsmD1VfjC/GT2pF0SMap9dXxEfoobi3PbRqkedPqvXCz1HsujqGw2Ym7PYGl/n0RBxuEnpaYj12EGnsOe049kLwxj98aIHzx98LV3vc2uZdx+jykWH1+g2evT5LC0KH0FQ50w1+hkFgRaH8fuE4eDXEKgSKlAPQwFq37wJe3RWL7SUlzkpjMRkjCpszh4sS2m36b63YRz9D/vIWyasAC+pR1263S9BcRgGYC2O/bPd/lKkozJmQYWPChLPpp9vP76dnH69ml59vLs9AY2AfrUsc0iFnct+PtpO1uyv2w626g+Y/9R2b2lr+aEPYQoTE7LvAqoaPd7TjIyyYHPYk9ygJUPK0uqNVFTHDb3VW1/gaMKC38P6hY6GjbSIMPncNxKMhvZg3vcaX5Lm9zScja14yuXU7QlbiCB5BYa/dWj+A+IqzBCCOvnqJmffobIF6Og2Dbmc9aldM45gX9ojswS0AubjbEq+/3CyQWk2rNYcDBN5qtsHeL/yd0Hv4BwPlsuVY695XFA6CZcmWKO/14s+/xBTa1w==
+api: eJztWE1z2zYQ/Ss7OCVTmlRSJ3V4Ux2ndZukHltuD44PILiSEIMAA4CSNRz+984C1Lc1cTs5yjMai8Ri3368B1LbMs8njuV37NahBc/dA7tPWIlOWFl7aTTL2bmpaoUeHXBolmYwl34KfoowkTPU8ICLlCWs5pZX6NGS05ZpXiHLGe0acffwJy5YwiQ5rbmfsoRZ/NZIiyXLvW1wF3k0RXIMZhyQ1uDegOijIlQnplhxlrfML2oClNrjBC1L2NjYivt46+0p67r7CIrO/2rKBe1ZxzDmymHChNEetac1XtdKCk7xZF8dBdXuo5niKwpP2VtTo/USHa3OuJW8UPGCl6UkL1xdbRgdSnq1dTPTnRpQAyj53SB0oxTtjd67hHERPbc7QEMQjfOmgmgAM64aAuEe5lIpKBC4EOicLBTC2JpqAx1nqL0Di65RXupJXPdT6QB1WRupPUg9M7F2KVyOQRsPtTUzWWKZgOxRShzzRnlK9AtbpvqFpV/0OjfnrdST/dy6hHnp6TLwlyjWk1UafR27zLqO7Cy62mgXm/F6cLpfjtF2dblbFb4E14RCjBulFinrEnY6GHzXw55AQHBNRShw7TqFT8YilOi5VA64xVWNQOqwfxk6FKZcxLocYGhtTaGw+mmfqbudv4qWPS5E8gB3EA2LiH53/eEc3p2++eX+xdT72uVZNp/PUzsWJ1hKb2xq7CSzY0EfsnuZwmiKFqHii8CfFethrQ1wNQo5loJ6Tgn2YQN1e6vvB4QVV9s9dqy03ljJdmU1hNvrS5Alai/HC2LsHnTYE9jIcsYL0/i8UFw/sDXP9kF3UVxTVdyuzqxtgC5hznPfuO+eVT+/3vNN9Pp9NLqC6AKEKRHGxkbV9UCURCW1rJqK5aeDQcIq/hiv3g4GHfmkjj8jEw34WCuuA7V205EaqjVvQ2JSO8+1+FGdMVZO5C5uyjY135P4fcwo6vz0GdLeFyapnZQ5No0u06PAjgI7CuygwN79D4FJt3yaza3Rk1BhBNFYi9qrxfEpeBTpUaQ/TqRvnno9HWqgKlviIVprLBgRFFjCfCpVcB9e93vs/mfSUWtHrR21dkhrXcIq9FNT0kzDuEAdGm3kLKMH4gk9EF3WbkxAukysfqPS7ALtbDkuaaxiOWujiLo8y9qpcb7L29pY32Uz6tDWVIGWo9iWJFJGcDWNgew3kxZoJrNM8pxXjS45nMH1xc0IfuMe5zz+wiXIbddng7PBk17J9IDH4dUlxAwjFTeOh6Vb0vmTbqPxcxyHqY5D0VjpFze0LZanQG7RDhvqx4oiPV7wTtfRiCX9lw9L4vzxzyj0no626/XE6OKRU/d2Bzwbc5YlCQNDxyZA9/zZT4I6itbFjYP01T5Xry6D5ISpqkaHc1dP4isW3yiKUI3zVIyEKSlQuxBhP39bmn2MK/B3RIRXKTU0sm553E6knzZFKkyVibht9b9QpsgqLnXWQ7jsfPjp9vP74cnHy/OLzzcXJ6/SQeoffSgcyaHiejOO5SRr9a64m267ftD8p7lj31uPjz6rFZeaqh8Sa3s93rG1HlnC8u2Z5IYk75NeVnesbQvu8NaqrqPb3xq0C5bf3a9VGGRbSkff1wPEgym9uO5njS/hubPNJzPrb3K9CCeCauiKJewBFzvj1u6+S9gUeYk2xBotzmNEJyPys/awN+3skuWOoRBY+wO2W28BpMXVkXj1182IpNWPWitT0l7L5zT75fMYtQmVCooN91qmuJ40fEK20Sf9/Qtrj9nb
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete user task
+
Completes a user task with the given key.
-## Request
+
-
Path Parameters
Body
variables objectnullable
+
-The variables to complete the user task with.
+
-
-
-The user task was completed successfully.
-
-
-
-The user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx
index 4f39e87aae3..a6cfc2303af 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/correlate-a-message.api.mdx
@@ -5,57 +5,279 @@ description: "Publishes a message and correlates it to a subscription."
sidebar_label: "Correlate a message"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SsYnNqpLCqJk7q6KbLTKo0djS23B9sHkIREJCTAAqBllcP/3l2CFClRktWZXjojZxyZxGI/3r63FJFTyxaGDh/oNTeGLTh96tGQm0CL1Aol6ZBOMz8WJuKGMJI4I8JkSAKlNY+ZhQVhiVWwbDJ/vbP/KCfztRHcIMKAQRCAi3kW456liGOiuc20JDbiZC60sSTVCm2IkMYyGXDyna/K5Tr4OnAIHmwEgWiPav5Xxo39qMIVHeblpdA8pEOrM96jgZKWS4tLLE1jEZQped8MlphTE0Q8YfiXXaUcilb+Nx5Y8AvZpFxbwQ2uSpZw/NxEaNZKDi0IMyTkcyEhQ+FK+zi9vqkrK/Ot4hirhVzQAjNcI/U7X+0O0kYTUVHzNjAdr9jJOctiKJtiiGemBfNjV8r+EtZmWMfnu683JFRBliB8PcrCUOAeFk9byDiQt7GTWRyjI7cOCUALmLSTsBsfy3CrZK40WUYiiDaaDuRJKyKGOwrdCoWxhMXLmtfjBrpbRxVaFGinuUmVNA6Ut4PBYWwgjRb9gPRKcgIJJ0rzDnMN/RfE2x+z1elW7Gq1h01achASfL4iImEf5U7xHCZ9FWkvKw/m13gXAMSCa7gBHU6Ydbc+nNODxJg1xJhcHhOmUVSFwaSC4Jj894B3YPocU98rbHT8q+h4vo+BkNSzCCFqyCxDHkplQaqxCPezDPaAJpKfXmPbiEydJYwty0RMHBPcHEND302yh9tPY/LL+fufn36IrE3N0POWy2Vfz4MzDmNB6b7SCw8u8RftfuwTyB2kkbAV8WEwrqcHaThGTMoDMRcB6sm6UstkENhjCOpW885QWPch04JuP9ZG5P52QgBRacV8BRu6oTcGKPNVZod+zOR32jS0G3Q7ismShOk1wzYDgCOgmM1aZezh0bu3Hd/Iit9msylxLoCZIS+np41wWrpAWEQipEiyhA6BXHDFXtzVh8GgQJ/Y8SMqkYS/pFC+e/xslQPkKEeg81YWVqvnP+qM0mIhtuP2N8RVkfjSVVTr6V2X7/eSZTYCj3/zk3pO6jmpZ796zrt8v1H4JS2TJ+mcpHOSzj7pvN/1RW4CEGskoeH6mWvCtVb6JKOTjE4y2ikjWEw4fFODF0OaKlNSh8FL15B61fuY8VqHIrDshIUnWjkkB7jQ3KmmALLnEfgohnmqtC28Z2zJxpkILjt11ayJVcDiyEXudg8XygOfqqoxS+CxyMgFub26m5Ff4S1xyVYlmhhy0/XF4GKw0yua7vE4mk6q0eG415oHtVsU9k63zvgYx0XxhEAG0Fy7usNtDh6fM831KMMGrDlRxSu947Uzgjvuj081Uz7/OSubjbPstjmsu3phSeqU6A7XGpJtn4g1K+2mbZwetN7+hZyrMs2KXN2C0RFQxSE06L/pEhlAQT0GKoG95VAGMuNbP2EtAIM4MxaB61GY3Bzf5ZtqarMvboX84SKSN31svmNoPYsX4Dnz+xDOC9y29acfK99LmJBeFcJ449H1/c3l6OzLZHx1c3d1Bh779sWWIKNWEibbedTHFs0p7na9efMY+p8c+lYUtPzFejDahMTGl5jm1Zx4qE+vzCah8Jjbqf2B5rnPDL/XcVHgbaCmBrY9PDU8wyvwHHEWArVxtHwvCTl2eJ3NMA80jzPMp3PQV/TqHSOAIrUHbZ9aM2/69W6GUqpOtRN4QsBdzZZ44g3/D+kj/IMLVcJfqrS8n1OY9IsMuzykzi/+/AMz9VEJ
+api: eJztWFFv2zYQ/isEnzZMsdw27Tq9uWm6uWtTI3G2hzQPlHS22FKkSh7juIb++3CibMl2nGbAXgY4QGBLPN7xvvu+k3UrjmLueHLDP4JzYg78NuI5uMzKCqXRPOETnyrpCnBMsDIYMaFzlhlrQQkExyQyNEww59PNzsFnPZ5tjKTRTDrmfJaBczOvaM9CKsUsoLeaYQFsJq1DVllDNkxqh0JnwL7CslleB98EztlCYjH4rHnELXzz4PCNyZc8WTWX0kLOE7QeIp4ZjaCRlkRVKZk1R4q/OEpxxV1WQCnoGy4r4Ak36RfIkEe8sqYCixIcrWpRAn1uIzTtHY4smHAsh5nUkDMZUnsz+Xixzqw5bxvHoZV6zms64QapP2H5cJA+moSKmfWB2fNKlZwJr5AnnELcCStFqkIqh1PYmFEe768+XbDcZL4k+CIu8lzSHqEmPWQCyLvYaa8UOQrrdcQRtNA4zvfjUxphlc2MZYtCZsVW0aVjVUvE/IFEd0JRLIl0ueb1WQfdZaAKr2uys+Aqo10A5flw+Dg20vXph4YZDcxYVhoLe8x1/F8Q73DMXqV7sdvViIq0AKXo8wcikvhZPyiex0nfRjrIykfP13mXGmEOlkd8ZmwpMNx6dcofJca0I8b47VPCdIpqMRi3EDzl/AfAe6T7PCW/H7Ax8K+l4+khBlbW3MkccpYLFMRDbZDdCSXzwyyrrEkVlL/8iG0jNgmWLAcUUrHAhNDHyDANnezm8t0Z++305a+3PxWIlUvieLFYDOwsO4FcorEDY+exnWX0T3Y/D9i0AAusFEuWAuu6B+s4xlwFmZzJjPSEIdXmMATsUwgaVld7TWFTB28l332sjdj15ZjJHDTK2VLq+X7orQYqUuMxSZXQX3lX0P2gu1GcL0thNwzbDlBH3KFA30vjAI9ePN/zTaz4YzqdsOCCZSaHpntiQd0yBKIkSqll6UuenA6HES/Ffbh6NRzW5JMq/oRMNIP7SgkdHj876UgdWmDw1iS2Vs9/VBlj5Vzuxh1siasl8duQ0VpPL/b5fq2Fx8JY+R2O6jmq56iew+o53ef7haEfaV4fpXOUzlE6h6Tz8qEfcmONYImEDuwdWAbWGnuU0VFGRxk9KKM64iVgYXKe8Mq4hjoCC57wuH0fc3FvKMIjHoRFE60V91bxhK+CauokjleFcVgnq8pYrOM7KsnWTISWg7rWrFEmE6oIkferRwvNwKfN6kyUXueCvWaX51dT9rtAWIhlgyaF3Hb9evh6+KBXMj3gcTQZt60jcK/XD9ZuSdgPug3GT3Fc17cEZOatxOUVbQvwpCAs2JGnAmw40cZrvNN1MOJR++Xdminv/542xaZedtkN687vRVkFJYbhWkey3YlYt9Iv2tb0oPf2L/XMNMdsybWfMDkC6wJCw8GzfSJPxo0eM1OWXjdNWc+bt34megBmyjsk4CKuZAb0Lt9lszb7EFbYXyEiezag4geGrnvxXGLh00FmyjgL2zafqTJpXAqp4zaEi89GH68v3o5OPozPzi+uzk+eDYYDvMcGZNJKKXT/HOuxRTfF3c131T2G/idD35aCCPcYV0pITYVvMF21feJmPb1y24SiMXdQ+w1frVLh4Nqquqbb3zzYJU9ubjue0VUd8QJEDrZpLV8bQp4FvE6mdA4yV57Oszfoq6P1jlGWQYWP2t72et7k09WUpNROtUuT0x4rFjTxFgua60bcNNA3Cm3urbgSeu6pwgkPPunvHwLGUA0=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Correlate a message
+
-
+
Publishes a message and correlates it to a subscription.
If correlation is successful it will return the first process instance key the message correlated with.
-## Request
+
-
Body
required
variables objectnullable
+
-The message variables as JSON document
+
-
-
-The message is correlated to one or more process instances
-
-
Schema
-
-The provided data is not valid
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Unauthorized
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Internal server error
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx
index 55b0a9f7c1f..653f241b3dd 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-document-link-alpha.api.mdx
@@ -5,48 +5,153 @@ description: "Create a link to a document in the Camunda 8 cluster."
sidebar_label: "Create document link (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJzdV1tv2zYU/iuEnhLMlmw3XTO9eU66ZWi7wHE2YHEeKImy2EqkSlJxDEH/feeQki+Rk2ZDsYfFiC2Sh+f6nYtqz9CV9sI770LGVcGE0d79wEuYjhUvDZfCC72ZYtQwQknOxRdiJDwlLTXhgpiMkRktKpFQck7ivNKGKX8pliIMQyENW4pFxjVhIiklxzuaUEFoXmaUpMC6UswnV4bElVLAM98QKeBLV2UplbHEXAwLVki12UnWRio2WIp1xuMMeYIoUjAKR6lUpFQyqWK0gFSa+VaZpfAGXkkVLRioiGbXnoAF2NixvUqAhKPVJTUZPCv2teKKJV5oVMWeumYBtl9dEJlaL2x1Ax+hr3y4r+OMFdQLa89sSpSkjeJi5TXNYCvcmrKT/LVianMgOqW5fq1sy6zT4PAoVbJ4Wad7J5Vp87NMNkjRUyKWwgAzPKNlmfOYoj7BZ41K1X3eMvrMYoOOV7JkynCm8ZQ9lsBWT01fjYEHASyowbAA8IaGg5eOWZ9YWIqEIAVZZ8yB0Rre8kdzRZXnNMqZCyE43jPc4HIL+g9wY+7sBicgBVwtpdBO18lojD9HFOg8a0WuqSaxzZUEwBvHTOsURG9Qh+/ktUrlx/zV16xL1f34+x4Y9p/5/Tk/tw4+G41e41PrT0zilPKcJT75iOhOmIElVAZ4Bgc98ARc3paiLnIkAgT7NuWfcT7cBFQUP/SDcKjVlFw7ylYuccEhEG5HGDnpd/P3M/LT2dt39yeZMaUOg2C9XvsqjYcs4ZCWvlSrAJb4j3SnPgGLwYaCbkgELk2ADGTSnOzCTnTJYp7yuAtnqzbB4Dn7XsaMO30h2JXivTBPye38ioBfheHpBi70Rds7Ka1y5EEjWZkwyikGeBv4byF1CnlSFBTKelvFDgUAI22gP+yZARXSsBVT+/rD1pvJUaD+ulhcE8eCxDJhtjMYbEatIDSi4IIXVeGFAElY0Ue3+nE0apAnRvwVlghEPpjv0PrEHABHscOtNYwL0EvE3ysyUvEVfyr3MAlbEF84ixqXhtAJM5lgu5PaQge7XugFXRYG9a4zNgGmpMYGwtRD10BtSfJqlzwNYL7OgFUT1ti8m+ABI/NAFccKbAOJxy7JOvDkMqZ55hToBxEPsFF2xu1mjfnlzYL8AsVoTTfWqSjykPX56Hx0lCuSPsNxen1FnIUOgntloWOL+X2UrSN+DWPbbDWDoYebzQ1ec+6JGFQ1Na0wDltotPIsd1w7IthxD+87wPz258LGHEvafNfILx9pUbqE3Kv/0NcmZ8PxaDiaLCaTcDQOJ2P/zdt3fzl8ptIq0KKnbwrGFUDgbB/54z5SwVxMuFgWcNdWXUDrmpsMJsj+xAj3oTQzKN0otx2NOrIP7oT84SSSsY9hddjriu0KOFeRD+KC2F3b/ka5jIKCchG0InQwm368/XQxHX64ml1+urkcAkffPBrrPkyGgop9PdwMfNicTuwMe/rU8HrXcP5ns3OLRsMeTQDFDqbVZtDNJK5y3G0naSAPD6ZqVzwA9K4A3Hl1HVHNblXeNLjtxl4sKQnXWC2eGXz33fvvZ+Cjpnxhm4Nx/IHmFVJ5mKtdEfuHKp7M2wn6lHz7beGoVu0mFZt9lTpt93zc3AN1xmgCpQGVdAQzp8pwgWx2DHpjKL6QuBtTmF1L8yLt/V7ruP79ZoGlqH1jKKDRwq6ia3yHge/QW8IHFtK6x1Y5u1970DBXFV0hveOLf38D940Glw==
+api: eJzlV21v2zYQ/isEPyWYLNlZuqT65iXp5qHtgsTdgCX+QEsniy1fVJKKIxj678ORkl9iJ82GYl8WILBlHu+eu+fetKKOLSxN7+ilzmoJylk6i2gONjO8clwrmtILA8wBYURw9YU4TRjJO2nCFXElkAsma5Uzck4yUVsHJr5X9ypNU6Ud3KtpyS0BlVea4x1LmCJ3TFQlIwUwVxuYHSUGCjCgMkj8yaA7sbHMj2MycSSrjQHlREO0Eg2xdVVp47wyrgYSpDbNBpl12kB0r5Ylz0q0qbQjEphypNCGVEbndYYektpC7MHeKxrRihkmwYHBsKyoYhJoSnu1k5xGlGNUKuZKGlEDX2tuIKepMzU8Dd20BDK5JLrwUVpjc9rHMqYRtVkJktF0RV1ToSXrDFcL2rbR2rh3ZWP5aw2m2TFdMGFfa9sr6xHsHhVGy5cxzYJVsO5nnTcosQci08qBcnjGqkrwjCGe5LNFUKt93Xr+GTKHgTe6AuM4WDyFx4obsGO3DyOihTaSOaSFORg4LoEe8j73aatyghJkWUJIVu94px/dVbUQbC4gUNi2EXXc4eO6KN5z9eUm+E3bFiUM2EorG7CeDEf4cQBAH1lvcsksyXwt5cTWWQbWFrUQDWL4TlGrjTgUr31kfSlv8x/TNvrv4v5cnLsAnw6Hr4mpjycWccG4gDwmHzC7c3CMC0uYASz0B55D3reqnjky13kT+5J/JviV0XMB8od9EnZRjcl1kOzskkAOYZYEwXmwfnfz7oK8PX1zNjsqnatsmiTL5TI2RTaAnDttYm0WiSky/Ee545hMSzBAJGvIHAjLc442mSAb2omtIOMFz3o6O9gEyQv+vZwz4fQFsmvD92gek083E8JzUI4XDVeLfdP+TsFqgTrYXNcunQuGBK+J/1amjomtpWSm6bvYroE2otYxV2+5QblysACzjZ8r9+PJwUT9dTq9JkEFyXQOfjI4HFadIXRCcsVlLWl6OhxGVLLH8PTTcNiiTmT8FZ4ozHzBVMjWJ+5wReQmb71jXFnHVPa9mNGGL/hTu7tF2CXxZfCoDWUowZU6x3GnrU8dnHopTfoqTFabydgmWJIWBwiYh36A+pZEV6F42jRJVqW2rk1XOLzb5AGZeWCGYwf2ROJxKLI+eYTOmCgDgH0S8QAHZe/cZhe5ubqdkl+YgyVrfFDR5K7q8+H58KBWFH1G4/h6QoKHIQW32kKvFuv7oNog/BrFfthayGrDXXOL10J45sAMmHGNPKxTo7PnteNzEKJR9+VdnzC//Tn1nGNLu9kM8qtHJqtQkFv9n54MT04Hw7PBydvp6E36ZpSenMfDs9FfIT8L7QF02bPvCvIKxgbfh/FoP1OvJ77gMi1lrXzXVQuy5K4k7MBGSSMqeAbKepzdatSLvQ8n5I9gkYxipDXkXt9sF9yV9TzOtEyycG39ORd6nkjGVdKZsMnF+MOnj5fjwfvJxdXH26vBKB7G7tH58GExSKa2cYQdeXc4HflF9vip46vNwPmf7dZdtjp4dEklGFeYSd3OEjrL3XrTphFNd7bu0FxmUdcg7uhqNWcWPhnRtvhzWIux5eTcYjd5ZjHeDv+/35EPuvIFmp11/YGJGqUo1nLf5P4hxKObbsM+Jt9+mziIqvuRqWYbUo92K8btrI1oCSwH40EGgYsAZTBFNRsFe2sqvrCEG+Msg8q9KDvbGi3Xv99OsVV1bxRS53jHsCW+47BlAKt9aHwH9L+tqGBqUbMFygad+Pc3kcQc/w==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create document link (alpha)
+
Create a link to a document in the Camunda 8 cluster.
:::note
-This endpoint is an alpha feature. It currently only supports an in-memory document store,
+This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
which is not meant for production use.
:::
-## Request
+
-
Path Parameters
Query Parameters
Body
+
-The document link was created successfully.
+
-
Schema
-
-The document link creation failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
index fb9494e3a00..f2de4e8ae8f 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/create-process-instance.api.mdx
@@ -5,29 +5,32 @@ description: "Creates and starts an instance of the specified process."
sidebar_label: "Create process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Create process instance
+
-
+
Creates and starts an instance of the specified process.
The process definition to use to create the instance can be specified either using its unique key
@@ -36,44 +39,285 @@ The process definition to use to create the instance can be specified either usi
Waits for the completion of the process instance before returning a result
when awaitCompletion is enabled.
-## Request
+
-
Body
required
oneOfvariables object
+
-JSON object that will instantiate the variables for the root variable scope
-of the process instance.
+0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ startInstructions: {
+ description:
+ "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n",
+ type: "array",
+ items: {
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n',
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationStartInstruction",
+ },
+ },
+ awaitCompletion: {
+ description:
+ "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n",
+ type: "boolean",
+ default: false,
+ },
+ fetchVariables: {
+ description:
+ "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n",
+ type: "array",
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ processDefinitionKey: {
+ description:
+ "The unique key identifying the process definition, e.g. returned for a process in the\ndeploy resources endpoint. Cannot be used together with processDefinitionId.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestByKey",
+ },
+ {
+ type: "object",
+ allOf: [
+ {
+ type: "object",
+ properties: {
+ variables: {
+ description:
+ "JSON object that will instantiate the variables for the root variable scope\nof the process instance.\n",
+ type: "object",
+ additionalProperties: true,
+ },
+ tenantId: {
+ description: "The tenant ID of the process definition.",
+ type: "string",
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ startInstructions: {
+ description:
+ "List of start instructions. By default, the process instance will start at\nthe start event. If provided, the process instance will apply start instructions\nafter it has been created.\n",
+ type: "array",
+ items: {
+ type: "object",
+ properties: {
+ elementId: {
+ description:
+ 'Future extensions might include:\n - different types of start instructions\n - ability to set local variables for different flow scopes\n\nFor now, however, the start instruction is implicitly a "startBeforeElement" instruction\n',
+ type: "string",
+ },
+ },
+ title: "ProcessInstanceCreationStartInstruction",
+ },
+ },
+ awaitCompletion: {
+ description:
+ "Wait for the process instance to complete. If the process instance completion does\nnot occur within the requestTimeout, the request will be closed. Disabled by default.\n",
+ type: "boolean",
+ default: false,
+ },
+ fetchVariables: {
+ description:
+ "List of variables names to be included in the response.\nIf empty, all visible variables in the root scope will be returned.\n",
+ type: "array",
+ items: { type: "string" },
+ },
+ requestTimeout: {
+ description:
+ "Timeout (in ms) the request waits for the process to complete. By default or\nwhen set to 0, the generic request timeout configured in the cluster is applied.\n",
+ type: "integer",
+ format: "int64",
+ },
+ },
+ title: "CreateProcessInstanceRequestBase",
+ },
+ ],
+ properties: {
+ processDefinitionId: {
+ description:
+ "The BPMN process ID of the process definition to start an instance of.\nCannot be used together with processDefinitionKey.\n",
+ type: "string",
+ },
+ processDefinitionVersion: {
+ description:
+ "The version of the process. Only considered when a processDefinitionId is provided.\nBy default, the latest version of the process is used.\n",
+ type: "integer",
+ format: "int32",
+ default: -1,
+ },
+ },
+ title: "CreateProcessInstanceRequestById",
+ },
+ ],
+ title: "CreateProcessInstanceRequest",
+ },
+ examples: {
+ "By process definition key": {
+ summary: "Create a process instance by processDefinitionKey.",
+ value: { processDefinitionKey: 12345, variables: {} },
+ },
+ "By process definition ID": {
+ summary:
+ "Create a process instance by processDefinitionId and version.",
+ value: {
+ processDefinitionId: "1234-5678",
+ version: 1,
+ variables: {},
+ },
+ },
+ },
+ },
+ },
+ }}
+>
-
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>startInstructions object[]
-
-List of start instructions. By default, the process instance will start at
-the start event. If provided, the process instance will apply start instructions
-after it has been created.
-
-
Array [
]
variables object
-
-JSON object that will instantiate the variables for the root variable scope
-of the process instance.
-
-
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be >0 if provided.\n","type":"integer","format":"int64","minimum":1}}>startInstructions object[]
-
-List of start instructions. By default, the process instance will start at
-the start event. If provided, the process instance will apply start instructions
-after it has been created.
-
-
Array [
]
-
-The process instance was created.
-
-
Schema
variables object
-
-All the variables visible in the root scope.
-
-
-
-The provided data is not valid.
-
-
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx
index 841c0c56569..ecca649ce3b 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-document-alpha.api.mdx
@@ -5,52 +5,154 @@ description: "Delete a document from the Camunda 8 cluster."
sidebar_label: "Delete document (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztV0tv4zYQ/isETwnqSN5ttk11M2Jv62K7CBKnPSQ50NLY4q5EakkqjiHov3eGlPyK06ZoT0UOiSVx+H3z5rDhTiwtT+74WKd1CcpZ/jDgGdjUyMpJrXjCx1CAAyZY1smwhdElczmwS1HWKhPsgqVFbR2Y6F7dqyRJlHZwr2a5tAxUVmmJu/BZKCaKKhdsAcLVBiI2dSytjUHUYs20wn+2riptnBeW6qyEUpv1lts6bWBwr1a5THPCRCpWgiC1tGGV0VmdkuasthB5Ze4VH/BKGFGiHYbMbbjCF7Sth51mKCLJ2kq4HJ8NfKulgYwnztRw6JIZ2j4dM73wXtjo5jTLvLMiRLBpDqXgScPduiIu64xUS962gw29N2bL/a0Gs94jX4jCvpbdg2112F+kkP21Vg/EayutLFhafz8c0s9z6g3mStiOK8OopSlYu6iLYh3xdsDPh+d/t1263Cu5lI+gyCICpHAuNGZV5MOWauVQmKBEVRUyFQQVY5jnBZTffbGE2+yYtU84YldBEhV1QhZMz79A6pjXnATnqLtU7O764yX76fzDjw8nuXOVTeJ4tVpFZpGeQSbRsZE2yxhf6Y/kTiOGxqC/S7Fmc6yODMWQUxSUghUYJ8EyW0EqFzKlqJClndqMfB/s66IQ1KI03WzexugwVgOOmV4KdAqvjeSH6TFit9dTJjN0m1ysccNzar9nIeqCMMRc1y6ZF0J9pcA56YqjpIcsti5LgaXZ5eE+AQJZhzW+YwbmuIMlmF398dP3759hU5r8MptdsQDBUp2Br25HDaUjIiNKqWRZlzw5Hw7xTTyFtx+Gw5YwKeKvsEQxeKrQfJ9ah+ZgcpRUVwHNGyYV6qXS/yoy2silPOSNqE/0seBdEo+DRW1Lax+O1eeIeiY2OcpDMAZdplPfXzOGDbPw8FSnPTd1GrDurdbeau2t1l6qNVzEySHXGQ0M/rzz8wTOCQmP++PMxs12mGjppAXz2E8btUHf8CZUTosJ3+TaujZpaNJp40cKy6MwUiCzjyIthwrrM6fQqSj852MRpAWaKXrLtoPZ9eRmxn4WDlYiHMxEuQ99MbwYHkUl0RcQR1dTFiwM+bfTE3pYKu6jsEH4NcB+KrGAHUy69Q1tC+6ZgzBgRjWFYJMXHZ9Hp/cghF/Cw8c+W379Y+YDLtVC++1d4J8rQlHBEAbNh9G750mGylKtpLrEvb5hYqL5wUYcGY5xP3ZVwAmLeLsZsBf7FFbY74GRvYsoKCFz+j65ROR6HiFdnIZtm995oedxKaSKOwobX45+u/08Hp19ml5OPt9MzhAxck/OG19hwpRC7ejRjfmb8ezET+qnhzY322Pif3Iz6NLHwZOLsTXhJN52fm+6Kr/b3BMsyic7lwZMz1Cqd7xp5sLCrSnalj6HWZ6KP5OW6vqFaX7Xn/9msD9qxVdY790yHkVRkxSnuuobzj9U8uS6u52cstdcg47q1X0Uar2rVK/vjn/bB5TOQWRYyKRmEBjhXaNyO1tfHFfIzk3vHk8+TWYTTP8/AQwvKiQ=
+api: eJztV01z2zYQ/SsYnOwpTSqp06a8aWynVSfNeBylPdg+QOBSRIIPBlhY1mj43zsLkpJsy6077a05aCQRi/d28XaXiw1HsQy8vObnTkYDFgO/zXgFQXrVonKWl/wcNCAwwarBhtXeGYYNsDNhoq0Ee8ukjgHB5zf2xpZlaR3CjZ03KjCwVeuURaYCE5ZdC902gtUgMHq4PSo81ODBSijSysmwEnJTHedshkxG78GiXjNn9ZqF2LbOYwJT9sSAcX698y2g85Dd2FWjZEOc1iEzIMht51nrXRUlRcZigDw5e2N5xlvhhQEET8ex4VYY4CUfYWcVz7ii02gFNjzjHr5G5aHiJfoIj49s3gCbnTNXp1Pa+oaOVekwc57xIBswgpcbjuuWuAJ6ZZe867ItfQpmx/01gl8/IK+FDi9lT2A7Hx4ukqR/7dUt8YbW2QCB1l9PJvT1lHqLuRJh4KpYiFJCCHXUep3zLuOnk9O/266wSU4u1R1YiogASc7aRVvlSTbpLIJFghJtq5UUBFW03i00mO8+B8Ld7IX1kHDKLntLVgEKpZlbfAaJLHlOhguomLLs+urdGfvp9M2Pt0cNYhvKolitVrmv5QlUCp3PnV8Wvpb0IbvjnM0b8MCMWLMFMFFVijiFphRswaOCwEILUtVKkioU6eA2o7Pv4xtU6N2iNN1u3mn0WKuM184bgbzk0Sv+OD2m7NPVjKkKLKp6rezyKXXaU4uoCUMsXMRyoYX9QsKhQn2Q9DFLiMYIvx7z8CFBl/GAAuNeGFxZhCX4ff+Vxe9fP8GmNPllPr9kPQSTroJU3UgNZyCiIIyyykTDy9PJJONG3Pf/fphMOsIkxV8QiWVw32phU2o9DkdZZqiuerQUmLIBhZX/lTLOq6V6zJtTnxi14EMSn/cRdR2tvTlUn1PqmQie8hC8d545mfprxVaN0gme6nTkpk4DAb/V2rda+1Zrz9Val3ED2LiKBob0vkvzBDa85MX4OgvFZjdMdPSmBX83ThvRa17yTV85XVkUm8YF7MoNTTpdcUey3AmvxEL3yUjLfYWNmaOdFDo9PqQgLdBMMUa2G9yuLj7O2c8CYSX6FzNRPoR+O3k7OYhKps8gTi9nrI+wz7+9njDCUnEfhO2NXwKcppIAMnqF64+0rT+eBQgPfhpJgm1eDHwJnf73Rjwbfrwbs+XXP+ZJcGVrl7YPwj91hFQBH3rPJ/mrp0l2OUu1Ip0x0aaGaZf9YCMODM8841pJsCGl8zADjmbv+xX2e8/IXuUkSp85Y59cKmziIpfOFLLftv1eaLcojFC2GChCcTb97dOH8+nJ+9nZxYePFyev8kmO95iCb11AI+yeH8M1YDueHaVx/fhxzJvda+J/cnMY0gvhHotWC2Up4ZMum6ELXG/vEYFnvNy7VNxmQylf881mIQJ88rrr6HE/61NzqFSgun9m2t8/738z+B+M4gusH9xC7oSOZMWp7saG9A+dPLoabi/H7CXXpIN+DQ+FXe87Nfq7d77dbZfxBkQFPrnZG0ylhBb3tj47zlCc295+fvH+Yn7Bu+5PDQFBcg==
sidebar_class_name: "delete api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete document (alpha)
+
Delete a document from the Camunda 8 cluster.
:::note
-This endpoint is an alpha feature. It currently only supports an in-memory document store,
+This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
which is not meant for production use.
:::
-## Request
+
-
Path Parameters
Query Parameters
+
-The document was deleted successfully.
+
-
-
-The document with the given ID was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
index 2075c8028d7..a1195a85f4e 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/delete-resource.api.mdx
@@ -5,53 +5,209 @@ description: "Deletes a deployed resource."
sidebar_label: "Delete resource"
hide_title: true
hide_table_of_contents: true
-api: eJztWN1v2zYQ/1cIPrWYYzld2mV+GOAl6Zat7QLH2R6SAKWls81WIjWSimMI+t93R0qy5Q+kD3sZ5hRJRfI+eL/73UlkyZ2YWz6852OwujAx8MceT8DGRuZOasWH/BJScGCZYAnkqV5Bwkwt3H9Qk4W0LBaKTQElcqNjsBYlZ1JJMtDD51hafEKtvwtpIAPluhLasJk22cbcg2p9FVaqOXMLqN23zi0DleRaKtdntzk6ma28WLPOVrpgS6Eccxp1KQgmlRf53Mj8DqvPLBdGZLhqMBze4+2QcCm5wgGisKGBMpKAyYVb4HMdVsKHzhSwjd4E3X2FFdOz7ubaPW1h6Nby++HsCOzFlsBr5AnbjsYO0BiBjReQCT4suVvlFCxiCnMwuETiwoWpd2e8qh5DwGDdzzpZkc46/plILQIQa1RXjtZEnqcyFuQp+mIJkHLXm55+gdihM1WkqZim0CCJ4edgnARL0vTsLY1hBgYUchVnu2iPEIh60YccL7QFxDUwo7BAaAjHljJNCW3MtfO44NBArE1iKUVF6oh0M6MzlMfktL4xWx8L60j3JzZgckY5epIJJIE8LwHY4xkinxUZH55WFcpLR/HWRdYU4TggjHCTDG4o18oGFN4MBrthTzaZJW3NrKTPUfvskEKzcZYIJ0hLaceeRCpR72ASUQkTlH23m8ztRNwESdyLEzJlIclM0OZIcIqOsRrvx+8v2I9nb394fLVwLrfDKFoul30zi08gkU6bvjbzCIf0S3Kv+ww3b4BlYuV7TpJ4IouUrenCrO8HMqYycyFWvxlKTydRLfe6XAurLUOtM8iHzWwWRvLtUh+xu/E1Q0iVw17UdK2Oa68zE8gvlBdTXbjhNBXqK19TYdfpthdbZJkwbUvpOkBD1glX2BfL+fs3O7aJFr9OJjcsmGCxToA6RiiC2lF/k8TILhyJ5zB6NxhUZJMy/g2RKAbPOYYvQqfqhoPkyLSBmj8+MKlwX3Xd/wuZ0UbO5bZfdLRRljWJL0NEoRzPBmcvVyDV0kwX6lhLx1o61tLBWnq77+WEsRDKhngIxiBkOo4Lg58YbLmQKTSfRY3v+nvkWGnHSjtW2v5Kw0U80ix0QscWbT116PQy5FF7nIrKjTNOFflvSNoIpgbMU3McKgxixMtQQRUSv8RPbFcNy1wbV0VPlJ4nYSR9x/ts0nKotIZBqY5Fugi72M0kLdCZq4nwQmT4GhXsnI2vbifsF+FgKVYeWXLZNX0+OB/stUqiByyObq5ZiDDwcKM3NGapyPeaDcLfYtifnCxgH5NudUtqAZ4pCANmVFAyWn7U/rx1GgchnAkP7xvW/PbXxCee+tp4fSq7ehZZHqpy36Fp4Ek5095hTZndrVMeMekh1kH/dJeeGB5VWawz1PWtFim6lG6Bx8y1vTjF8xJB0OPYjwHPMeS3PlU3Yh/CCvszeGSnfUpj4FrTYedouZj20V0UB7X2/2mqp1EmpIpqFza6GH28+3Q5OvlwfXH16fbqBC323bPzcFEFZEJt7CMcv9ovuO1Yy/WL5X93HVJT0sGzi7DtSUVF4jNT1j3kvr0csSg/7N6UtG0E6R9awT0vy6mwcGfSqqJp5K1Z4fzjunP4VpNIS8/ri4WDOXk1ru8gXrP/wn3LXkjrSaFWvoOmBY3wES1tXT9Vjyi+AJFgSyCcgsRFQONkQnbWFnZuYKpeozGKY8jdAdnOJxP1rvb9cfPH7YRaUX39k+HbljYolnQXhn+H/AH/4UD7TPku5+dLjm/NeSHmJB/s0s8/ZB4kmw==
+api: eJztWE1v3DYQ/SsDnhJUltapm6Y6FNg6Tus2SY31pj3YBsKVRismFKmQlNfCQv+9GFLSfhrJoZeiNrCwJA5nOG/eG4lcM8eXlqU3bIZWNyZDdhexHG1mRO2EVixlr1GiQwsccqylbjEH0xvHt2peCgsZV7BA4FAbnaG1kGMhlCAHEeSYCSu0AoNfGmGwQuV2LbSBQptq69mtGmM1VqgluBL78GNwC6jyWgvlYriuMRNF682GcWh1AyuuHDgNuU8ChPImHwebP7D9CDU3vEKHJr5VLGLjLeGyZopXyFK2NYNFTBAwNXcli1ifVs5SZxrcR29eInzGFnSxu7hxTXsYuo39cTh3DI5iS+AN9oTtzowDoFnEbFZixVm6Zq6tKVmhHC7RsIiROXfh0csz1nV3IWG07hedtzRnk3/BpcWIZVo5VI7GeF1LkXGKlHyyBMj6MJpefMLMsYipRkq+kDggWRtdo3ECLVnTtfc0wwINqgzp6S7aUzDDoE85K7VFBYvAjMYiocEdrISUhHbNjfO4SAkGM21ySyVqpCPSFUZX4Kg4Y+z4Vr1rrKO5P8MEREE1uhc55oE8XwMwYpVQomoqlp52XcSccJRvL7JBhLOAMOs6sjFoa61sQOHFZHKY9nybWcL2zMpj1kXs7LEJw8Ih547TLKUd3HMp8pg9WsTa6IXE6rvDYu4X4ipYQo6OCwmhyMBpcWS4wJzUeDN7cw4/nf3w492z0rnapkmyWq1iU2QnmAunTazNMjFFRj+yex7DvESDUPHW95w890TmEjZ0Aev7gchIZi7k6hdD5dkp1Mi9Xa6F0ZGh1hmhltvVbIxg+1KfwofZJYgclRNFO3StndB+TsEbST74QjcuXUiuPrMNFQ6D7kexTVVxM7aU3QBdxKzjrrFflfP3Lw58Ey1+m8+vILiATOdIHSOIoA8Ub5P4bDKJWMUfwt3LyaQjn1Txb8hEAT7UkiseOtVuOkJBpQ32/PGJCWUd73X/L1RGG7EU+3Fjti3LnsSvQ0ZBjmeTs68rkLRU6EY9aelJS09aelRLPxx7OU0VEMqGeIjGaAM6yxpjMIdVKSQOn0VD7P575ElpT0p7UtpxpXURq9CVOqdti7aeOrR7SVkybqeS9dYep0v8NyQtJGIWzf2wHWqMZClbBwV1aZKsS21dl65rbVyX3FN57rkR9B3vq0nDQWkDg6TOuCzDKg4rSQO05xoyPOdVo3IOr2B2cT2HX7nDFW89shRy1/WryavJUa9k+ojH6dUlhAwDD7d6w+CWRH7UbTD+Fsd+52Qxa4xw7TVNC/AskBs004aKMfKjj+e9030wYlF/8WZgze9/z33hqa/NNruyiwde1UGVxzZNE0/KQvuAPWUOl051RGNDrpP49JCeV5deZZmuqkb5VquWsBKuBL4FRSYbS3trFjEpMlTWr6vfVQ9mb8MI/BUiwmlMZQxcGzrsUriyWcSZrpIsTBv/L6ReJBUXKulD2OR8+u7D+9fTk7eX5xfvry9OTuNJ7B6ch4sUUHG1tY6w/Rq/4PZzXW9eLP+745Cekg4fXFJLLhSJxFdm3feQm/FwxLKIpbsnJWMbuYv6VnDD1usFt/jByK6jx18aNC1Lb+42ncO3mlxYut4cLDxak2ez/gziOfwXzluOQto/5Kr1HVQ2dMci9hnbveOn7q6LWIk8R+NxChbnAY2TOfnZeDg4gemiYcY0y7B2j9jufDJR7xrfH1d/Xs+pFfXHP5XO/fkYX9FZGF+FVWtfJd/h/LM1k1wtG74k2+CT/v4B5Kcjnw==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Delete resource
+
Deletes a deployed resource.
This can be a process definition, decision requirements definition, or form definition
deployed using the deploy resources endpoint. Specify the resource you want to delete in the `resourceKey` parameter.
-## Request
+
-
Path Parameters
Body
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation.\nMust be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The resource is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx
index 4128d208bf6..5d3eb6b7c2c 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/deploy-resources.api.mdx
@@ -5,41 +5,288 @@ description: "Deploys one or more resources (e.g. processes, decision models, or
sidebar_label: "Deploy resources"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Deploy resources
+
-
+
Deploys one or more resources (e.g. processes, decision models, or forms).
This is an atomic call, i.e. either all resources are deployed or none of them are.
-## Request
+
-
Body
required
+
-The resources are deployed.
+
-
Schema
deployments object[]
Array [
processDefinition object
decisionDefinition object
decisionRequirements object
form object
]
-
-The document upload failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx
index 5848d75d3fc..75c52ed9519 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/download-document-alpha.api.mdx
@@ -5,56 +5,162 @@ description: "Download a document from the Camunda 8 cluster."
sidebar_label: "Download document (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztV0tz2zYQ/isYnOypTCqp0zq8aWwnVSfNeGy5Odg+gORKREICDABa1mj437sLkHpZSt1pTx17xjYfi/2+fXJ3yZ2YWZ7c8QudNRUoZ/nDgOdgMyNrJ7XiCb6aq1KLnAmWd1JsanTFXAHsXFSNygU7Y1nZWAcmulf3KkkSpR3cq0khLQOV11riKbwWiomyLgSbgnCNgYiNHcsaY1BruWBa4R/b1LU2zgtLdVJBpc1ijW2dNjC4V/NCZgXpRChWgSBa2rDa6LzJiDtrLESezL3iA14LIypAimTwkiu8Qet6teMcRSTZWwtX4LWB7400kPPEmQZ2nTJB28cXTE+9F1bcnMbr4K4IddisgErwZMndoiY064xUM962gxUBb84a/XsDZrEFPxWlfSm+V7bJYvs1he3HvB4I2dZaWbD0/u1wSP+eg690zoVdoUGOwcsysHbalOWCoDKtHIqRElHXpcwEKYl15sCdICyIit4dYjTgGNNK4HmeSiXQNS3+DPjp8PTveElXeOtn8hEUOYuYUq5MNaZs5HPiADvMobSE6qevlvRustsGHLGrIMlycEKWTKdfIXOMXOIFU/SIVOzu+sM5e3/67teHo8K52iZxPJ/PIzPNTiCXGLNIm1mMt/RLcscRQ2MwlJVYsBSYyFEMMUVJ+V2DcRIsszVkciozCjhZ2tFm5MJgX+fMQItqYHV47eofuLwxku9m3ojdXo+ZzNFtcrrAA8+h/ZmpaErSIVLduCQthfrGMXBOunIv6C6KbaoK492n+DYAKrIOG8iGGVg+DmZgNvnjo5/fPtNNafLbZHLFggqW6Rx863DUrTogMqKSSlYN5ufpcIh34inc/TIctqSTIv4CSxSDpxrN96m1aw4mR0UlG7R5w6RCXir7ryKjjZzJXdyIWlAfC94l8UWwKBTYu32FP6KGjB2U8hCMQZfpzDfvnGE3Lr16qv4em5oYWPdaa6+19lprh2oNX+JYUmj81PMZ+MyhCSThcf8ts/FyPaa09P0G89jPMY1Bx/BlKJsWs31ZaOvaZEkzVBs/UkwehZECYX0I6XUorz5tSp2J0j/eFz56QbNKb9Z65Lu+vJmwj8LBXCy8OwlyW/XZ8Gy4VyuJHtA4uhqzYGFIvo2G0Kulyt6rNgi/RLGfdSxg+5JucUPHgntSEAbMqKEQrJKiw/Pa6T4I4ZNw8aFPld+/THy0pZpqf7yL+nMiFBUMYWA+jN48zzAkS4WS6QrP+m6JWeanGrFn7Mbz2FIB5zbC7WbLXuxTeMP+DIjsTURBCZnTN8kZam7SCOHiLBxb/U9LncaVkCruIGx8Pvrj9vPF6OTT+Pzy883lCWqM3JPzxteYMJVQGzxWK8RqOjvyW8DxrtXL9Vfif7N3dCnk4MnF2Jtwym873y+7Sr9bbSEW5ZONlQRTNJTrHV8uU2Hh1pRtS4/DnkANIJeWavvAprDp0X+3NOy14xsstnaYR1E2JMWpuvq28w9pHl13u88xe9matZdZ91CoxSatnvGGj9sHlC4AtxfjiQaBEa4xtds4enB7IUtXDfzjJTWAvwAplk5Z
+api: eJztV0tz2zYQ/isYnOwpTSqp06a8aWwnVSfNeGylPdg+gOBSRIIHAywtczT8750FSVm25dSd9tYcNJKIxX7fPrm74ShWgedX/NTJ1oDFwG8SXkKQXjWonOU5P3Vrq50omWDlKMUq7wzDGtiJMK0tBXvLpG4Dgk+v7bXN89w6hGu7rFVgYMvGKYtMBSYsuxK6qQWrQGDr4eYg81CBByshiydH40lITXmYsgUy2XoPFnXHnNUdC23TOI9RmbJHBozz3T23gM5Dcm3XtZI1YVqHzIAg2s6zxruylWQbawOkkey15QlvhBcGEDw5ZMOtMMBzPqldlDzhivzRCKx5wj18bZWHkufoW3jstGUNbHHKXBW9tOWGjpWjO1Oe8CBrMILnG45dQ2gBvbIr3vfJlkA05x79awu+ewBfCR1eih+V7bJ4eExh/TavG0IOjbMBAp2/ns3o6yn4VudahC0alCy0UkIIVat1R1DSWQSLpEQ0jVZSkJLMSQQ8CuhBGDp7jlHCK+eNQJ7zQlnhO973fZ/w49nx3/FSWEfrV+oWLDmLmFKuVK61ZRpz4hl2jXeFBvPD50B6d9k9BJyz80GSlYBCaeaKzyCRkUuiYAElU5ZdXbw7Yb8cv/n55qBGbEKeZev1OvWVPIJSofOp86vMV5I+JHeYsmUNHpgRHSuAibJUhCk05XcDHhUEFhqQqlKSAk6WjrQZuXCwb3TmQItqYHv53tXfcHnrFX+ceXP26WLBVAkWVdUpu3oKHe9UotWkQxSuxbzQwn7hfcJRod4L+hgltMYI300p/hCgT3hAge2OGVxZhBX4Xf7K4o+vn+imNPl1uTxngwomXQmxdSB1sxGIjDDKKtManh/PZgk34m7499Ns1pNOivgLLLEM7hotbEytx+YoywyV7KAtGqZsQGHlfxUZ59VKPcZNqQVNseBjEp8OFg0F9mZf4c+pISN4ykPw3nnmZGzeJVvXSkf1VP0TNjUxCPi91r7X2vdae67W+oQbwNqVPOcriJlDE0jOs+ldFrLN/ZjS0/sb/O00x7Re85xvhrLp8yzb1C5gn29ohuqzW4rJrfBKFHrIRDoeymtKG+2k0PHxvvDRAc0qk1n3I+HF2eWSvRcIa9FFdxLkQ9VvZ29ne7WS6DMa5+cLNlg4JN9OQ5jUUmXvVTsIv0RxnHUCyNYr7C7p2uCeAoQHP28pBNukGPGidvo/CPFk/PFuSpXf/lzGaCtbuXh9jPpTIhQV8GFgPktfPc2w80UsFOmMaW3slnY1TDViz1jOE66VBBtiLo+z5ST2YThhfwyI7FVKQRkyZ2qSK4V1W6TSmUwO17bfhXZFZoSy2QgRspP5758+ns6PPixOzj5enh29Smcp3mE0vnEBjbA7PLYrxnY6O4irwOFjqzf3b4n/zV4yphjCHWaNFspS0sfYbMZOcLXdUgJPeL6zstwkYzlf8c2mEAE+ed339HjYI6hBlCpQ7T+zSex6/N8tFXvt+ALdgx3nVuiWpDhV39SW/iHNg4txNzpkL1vD9jIbHwrb7dKaGO/4uL/pE16DKMFHooPAXEpocOfqs9sNWbpt8O/PqEH8BQ2vZac=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Download document (alpha)
+
Download a document from the Camunda 8 cluster.
:::note
-This endpoint is an alpha feature. It currently only supports an in-memory document store,
+This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
which is not meant for production use.
:::
-## Request
+
-
Path Parameters
Query Parameters
+
-The document was downloaded successfully.
+
-
Schema
-
-string
-
-
-
-The document with the given ID was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
index c3396d51826..1128051da21 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/evaluate-decision.api.mdx
@@ -5,31 +5,31 @@ description: "Evaluates a decision."
sidebar_label: "Evaluate decision"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Evaluate decision
+
Evaluates a decision.
@@ -37,30 +37,411 @@ You specify the decision to evaluate either by using its unique key (as returned
DeployResource), or using the decision ID. When using the decision ID, the latest deployed
version of the decision is used.
-## Request
+
-
Body
required
oneOfvariables object
+
-The message variables as JSON document.
+
-
variables object
-
-The message variables as JSON document.
-
-
-
-The decision was evaluated.
-
-
Schema
evaluatedDecisions object[]
Array [
matchedRules object[]
Array [
evaluatedOutputs object[]
Array [
]
]
evaluatedInputs object[]
Array [
]
]
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The decision is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
index 31df6c76e49..76b2410080c 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/fail-job.api.mdx
@@ -5,59 +5,265 @@ description: "Mark the job as failed"
sidebar_label: "Fail job"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtX3DYU/is62hROh/EkJSmZ3YRACw2PA0O7ICxkWx4LbMmVZAYfH//33ivZnieERZeTBGLrcZ/fdyXfmlo2M3R8T89VSB8GNOYm0qKwQkk6phdMPxGbcvKoQsIMSZjIePxD0gEtmGY5t1zj7ppKeIENsO4vXsG0wO0Fsyk8a/5vKTSP6djqkq/rmIL4J14RlfSarHKahrDXRCnPGR3X1FYFahDS8hnXMJUonTPrhz4f0qZ58Kq4sV9VXOGeheaEZQZURwq2S4tzrCgyETG0Ing0aEq9qU2Fjzyy6K5WBddWcOPlWt0+bjrDclVKi/60y3q/TKrKLCYpe+Yk44l1gXzTr98+UoxXwsoMRkbNgHKtlb7gxrAZ39Q/kUS5Z5aR3C8ifkUo5IzM06o3xudySKapMAT+QUKtiMqM6awipeFJmRGREOYW61IaosoVr5iM4YcIGYkYYooyNBOGxwOEikWxnQkRrEt5VhD+UmRMSGfI8t456zYPl4NiQJOcwbsss4yFGfcQagYuA9VXFj1dJcn2NIQwqRIAlcg5Wr4HanOzTyC8LgaSv1jnSzX8eR4AX2t5eGZaoEUOBCyOhY/69RJOtqH9/PbqknhUgRUMPBcZxFkay6QVzHJnWy+cMOsGMhVBRk0EwpeI8gvMG6Mi3BcTy8zTiis9eNeiB9ZbYfEVWX8KOLjxtAEONS62plDSeNc+jg63xxdhIbqSMKSw73A02r4UyPMMeY5JzCzDTVJZ8DETbbZfYSVsA6PzXzfZuQZ6cu1XAtQtmNPFFzDVYh9UQ/bvb06PyZfDT78/7KXWFmYcBPP5fKiT6IBD/pQeKj0L4BV/cN0+soNrTnJWkRCY3aeZLOoBMQWPRCIiLFvWe+uMwSxsz8dqMfGz9Qbme/yVWtB1HE3I3c0ZceQRSYXc3lC9jFjKQuDAOMyYfKKL/G8qXddiyjxnuq/OqwpAEODWluan9bmtY+vA+HM6vSZeBIlUzFtyYjXyitCJXEiRlzkdA77gjb34t88jpKHP+Ds8kb72SAetdXewNCjNW/w4xzwlo/8rM0qLmVjXC4qWuNiC+Jv3yFPx8C32zYVNnbiZeOaS+LO3o1cCh9COXjt67ej1Jr2+vJteT55boAXH5lqBaowt3G5KrcGcrBqSi4WbcDbrpaOv3dedrSSEK+qOnjt67uj5Oj0/bbtQTvCzAb47EYfuY4ioyDEwhq8KuIui+Ai+Ozrd7Sfhjms7ru249hrXYDLnNlUxdm2UcdDB5s2YBnAUmqD2l8smwM+9UnPszHD93HV/Sg2BobWnTQNor1MQ0ozrQmnbBM+Yk5UPZpz29Opg475wU696M304gS2mzq1jlsP1lpEjcnNyOyV/wDE8Z5ULJ6pcFX00OhptlYpLX5E4uT4j3kMPvqWC0IlFZm8V6xe/R7DrWRkO5UvY6ha3+fCEHO4OelJiBnpQtPqcdHz3i2DEP5x2UDn/Z+qyjcXsZtEPO3lheeGp2LevRuv9pAXyVhsso9X8NQ62iXLWtaDa9BOTDgjxgRkNP2wCGGKBPIxUDntdMcYmFd672FLcoqw0FuM1oFCxOdyeUG/bceyWffcz5G+vkXwYYs49MLsaPAPJZTgEdUHkt/X/h5kKg5wJGbQqTHA8ubi7/DY5+H52fHJ5e3IAEof2xbrYIkdyJpfswDYKXhvXnawXZ85b7dQ2x5a/2MC1yBB1zvq6ZeI9NlcNLB33TdaOjAAiT6h7WtchM/xOZ02Dw5B9XcH4wyJ/jrCxMPi8aIy+avPeTdtD3Sdvd2q3etAOMlm5CpCV+AaPIGbRLW4eYGXKWQxoRuP85LE34WCKIhabN9q2zaDbMYkiXthX1q4c8Ui7vt5dX91OkUVtzziH0wFGNZsjC+D3mP6Av/DiO6u+AYzjNYUqPys9cbxc/PMfr+YI7Q==
+api: eJztWEtz2zYQ/is7uDSZ0pKSOmmim+MkbdI8PLbTHlwfluRShA0CDABa5mj43zsLkHrbyaFHeUZjEsS+v29J7EJ4nDkxvRIfTSquE5GTy6ysvTRaTMVntLfgS4IbkwI6KFAqyv/VIhE1WqzIk2XphdBYkZiKG5P+Ra1IhGTxGn0pEmHpeyMt5WLqbUPbNi5LgltqwRRLS94ESyORCJeVVKGYLoRva7YgtacZWZGIwtgKfVx6eSy67jqaIuffmLxlmZXlApWjRGRGe9Ken2FdK5khezG+cezKYteaSW8o8xyuNTVZL8lFvd72l7vBYGUa7TmeftsyLleaRuVQ4h2BosKHRD4a12/PBeerwEZ5MZ10iSBrjf1MzuGMdu2faDDhGhVUcRPEHanUM5iX7dKZWMsRXJbSgXRQo/UyaxRa1ULjqGgUyAIwbLaNdmCajahQ54AapM5kTtqzDovSUZ4wVDyrHVzIUENJqga6rxVKHRxZl53jIDxaT4rzVuqZSIRulMJUUYRQl4QKtG8wu/1aFPvLkGJ2a4oCvKyIPX8iNVTuKRTGhhxouvchlnb04zq8PN6uwx1ayR4FEGCey5j1szWc7EP7x4uvXyCiCnyJHuZSKZDaedReoqfg21I5oA8LymSowGWmpjWi/OIAnTMZy+Xg0d1uhLIE71b2ukR46fmWWf8epTqPtBFd14XcutpoF0N7Pjnen1+GhRxawkh0iTieTPZvra25kznlkKNHFtLGwx0q2Vf7AVbW1qSKql932bkFejiLOyEnj1IN+UU3YJ9ykBquzt+fwuvjF79fPym9r910PJ7P5yNbZEeUS2/syNjZ2BYZ/3jfU2YHWYIKW0gJVmWGVT8AV1MmC5lx2/Ix2uAMV2F/PTabSXy62MH8En+NlWIbRyfw7fwDBPLIomVu75heR6zA1DR+mirUt2JV/12j21ZcU1Vol91500CXCOfRN+6H/bnvY9vA+PPy8gyiCshMTj05uRtFQxxEJbWsmkpMjyeTRFR4H+9eTpiGseI/EYmOvUcHaG2Hw63BWOrxEwKLlMz+r8oYK2dy2+5IrHOxB/HbGFGk4vFj7JtLXwZ1M3lHGuK7d6BXYRp9oNeBXgd6PUqv1z9Nr9vILanD2twaPQu5Jcgaa0l71Y7g8ypMB2jXXn293PBuhdTk7YGeB3oe6PkwPV/s+6A84WODJ8s4DIchMFlgYA7zUqqgPiPnBtv9kfDAtQPXDlx7iGtdIirypcl5amNcgA4Pb6ZifGNSN17Ej8tuzMe9xhJPZsjeDdOfxioxFYtIm246Hi9K43w3XdTG+m58xzXZODDz40ivATbhhFtG07vl4wc8YhrCOsWq0TnCKzh/d3EJf6CnObYhnWxyU/WryavJXq289QGNJ2cfIEYYwbfWEAa1zOy9auPmn1EcZlaOssZK316wWExPSmjJnjRcgSUoentBO9/HTSLpL94PUPn4z2WoNjez89U87N09VnWk4nJ8NdmeJ62QtzlgmWzWrwuwLUzwrgfVbpxcdLIuJmYyerYL4LMPgYeZqapGh2bMQyr+7sK1vGWqcZ7zlQglM9IuBNFPHIdtn+IT+DtahGcjrnkE5tCDZ9KXTTrKTDXOotjyf6pMOq5Q6nFvwo1PTz5/+/L25OjTh9N3Xy7eHT0bTUb+3ofcMkcq1Gt+8BiFPxu3g1ys3jmPjVP7Gnu69+MwImPUBe8XPROveLjqRCKmyyHrQMbrpCfUlVgsUnT0zaqu4+XvDdlWTK+uV/ULhM2l4+vVYPRBn5+c9zPUp/D4pHZvBP0i6jZ0ANXwnUjELbWraXF33SWiJMzJBufiw9PowtElq1gJ74xtu2SQOMkyqv0Dezde8Uy7Zb87+3pxySzqZ8aVyVnW4pxZgPPocJyqxuEvry2EQj1rImmiTv77D582B/E=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Fail job
+
Mark the job as failed
-## Request
+
-
Path Parameters
Body
variables objectnullable
+
-JSON object that will instantiate the variables at the local scope of the job's associated task.
+
-
-
-The job is failed.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx
index ef8aa6c543d..7053a3ba79f 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/find-all-users.api.mdx
@@ -5,62 +5,388 @@ description: "Search for users based on given criteria."
sidebar_label: "Query users (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWU1z2zYQ/SsY9JJMrY+kTprqpjh26zZNXEtOD7IOIAlKSECABUDLqob/vbsA9UkqkTvtjc44FoHFLvDwHpZarKhjM0sHE3pnuaHTM5pwGxuRO6EVHdARZyaek1QbUoCBJRGzPCFakZl44IqAqeNGsO69uleDwUBpx+/VeC4s4SrJtVCOwGemCJP5nJGUM1cYDg0JAVswYpEMDi9YVqiEkVgW1mEoXTiiU+LmnET6ESKMOPdPk7XpG3J7ORqT4c010Q/cPAi+mD7rsVzYjtNa2l4cDDvQ1DHculpDZz2umyXf/VVws8Su5/cKV5wWBsIZknDHhLRdv8J7Rc+ozrlhCNF1AiClQiVDKRFBC52GgyPr3upkSQcrGmvluHL4keW5FLEf2PtsEeAVtfGcZ8z3Svkxha1YUbfMOfjV0WceO/CYGwzoBLd+hDbeW2XFjGFLMIKNyOxT/KSCy2THkXVGqBktYXkmATLUepAcKSukw6g2pmUZFisMT5BCwSFwyAkn+YY9fyCsI5j0bQCGllMcmbMZf9J0jc525gTM4jOY5RmFrcqYC00/vMT5S5EJd6Kt9XMcpm5vxTVQ9+dWbga+5eCSP2Vk2YjPDaCxxeesIV7DoOMD6nstqwWeCjfKXbGMNxLkaAdQWciGnp35o0yu/HT2+bDb37TGfbY5U3DfYHOtbJjyy34f/+yfYB9/g6WdrMFDTE5F66lkdtoxeX1AkWaavj5HYFNhrEMRfWKy4PZpVJXs3479GlkD8k9h686IfTgO439jXrXhyYkofuHLEy3/V/pvkWgm/m4/GJw38fotS0iVaY4THGCC9Jp9Xyf6vrMhuQmWVa4jAWjCLAmGEeRoocjk9uqC/HT+6sfps7lzuR30eovFomvSuMMT4bTpajPrwSP+ot3zLhlDCuUkY0sSQd5PwAxiMkm2W0hszmORipg47RN8NW2CKHZ9wv2GmnxvPV1ttrUwgh6+2gzJ3e01EQnAJtIlDKiH3s94EbyQDCLJ1Be63bWmHLkfxRZZxsxy/SqzHwDziINXom8fA5CtDn0DsuSX8fiGBBck1gn3r2oO37+qQLiITCiRFZA9gUnwxB7D0+t+v0SfrpG0tZUowh9zWL6n1uFygBwZJMKKP35hQsG8VPxf7Yw2YiYO43b3tFWR+F1Y0Vo8L+p8v1OscHPw+DfkklY9rXpa9RxTzw91vl9pE4kEArTSaaXTSueodM7rfP+gHQBVqDbrtNJppXNMOq+avvBcA8QGSQhfkx64IdwYbVoZtTJqZdQoI+jMOHzJwQp1rn2VIGduDk89X8rvhQImxUomCsr6slVhAA+6CmopgeSrOYwtB6tcG1f2HnArHpgRWLb3O4fdQVVrtkgdMzkPEeu7hh1YP1mv5qCW/zNzfMGWHsW8KnRvXb/pv+k3ekXTIx7xdiCsMHBu5xxYu0VBN7oNxqc4LrGoZXkMm+qWIxwW4IkAZG6GBQK/4UIVz3vH52AELeHD1Zohv/459puMZ9jt9lbh8pFleVDgtq67LVhtqXb4XJWndgpW4S5hsrkM2NpWdwCh0D/dlutDGb6/KbL3D0rok1VAYrc4jm2ll0WqPQwVaeuAIruAimEH+t0XdYEA6KjzWGcw1h/2IJKFcHPCdjaoukTCEwAyAsdaGsSt8FibvQ895FOISF50kVxBAeszfgaei6gL4dZ3R5u/kdRRDxBVvSqE7V0Mf7/78G7YeX99cflhdNkBj133GCqiqMGMqZ15+Kpoda/2zN+PPT9c7871UXsX13wXV2nK8UfXgzNaKF++NTKU5VF3Ey8OS9e0xCuqcGxN6GqFKN4ZWZbY7MNC+3R7yuETeJxzlgR+hyoyvQgb0xljfDSXhS9dH94vlGfrEcM45rn7qu1059C++Tga45lQ3SNmkOKg1bAF3jHC/wN6D//8bSR68MeNb19RSFWzwguWBr/48w/0TFIP
+api: eJztWU1z2zYQ/SsY9GJPKVFOnDTlTXHs1m2auLacHmQdIHIpIgUBBljaVjX8750FKOuDcmJn2ps847FI7AeweA+Q3y44ipnjyZhfO7B8EvEMXGplhdJonvArEDYtWG4sqx1Yx6bCQcaMZjN5C5qlViJYKfo3+kYnSaINwo0eFdIx0FllpEYmHROajYWqCsFyEFhbmBzEFnKwoFOI/UivHXH9MjtkQmdMG2SgxVSFhCeirHUmWKpqhzQVUyMzOcMC2NTc92/0FYB/Gi9N37DL06sRG16cM3ML9lbC3eQgFpV0PTRGuTgNhj1RyZ4Fh50XvaVfv8x++FKDndPQ4Y2miuS1xQIsywCFVK7vK3CjecRNBVZQCc8znvBc6myoFFXY8Yhb+FKDw7cmm/NkwVOjETTSR1FVSqbeMf7saAMW3KUFlMKPKvUx58l4wXFeAU+4mX6GFHnEK0sJUYLzHsb6aK2VsFbMecQlQumeEyeXoLK1QA6t1DPeRNzYDGx3hMCTi1ohZXUpb5qwWGkhI4iFgJOIo0QFD+j6k8p6ZSxehsLwZkKelZjBs6ZrTbk2J6kRZmB5xHNjS4Hh1csXNH8lS4lPtHV+jsMcN1bcKerm3JoHx7eQGwvP8Wx21udCzGBVn2hHvh1Ojzt091q1C3xquek40KKEnQB5dABKIdWOkbX5E03O/HQ28bA+vmuNm2hDW4N/4SqjXZjyi8GA/myecB9/59HTObhdk6dW67lgRoNCnW9BZDdMXx9TYXNpHRKJPglVg3seVJX4Xt+vgTVU/jloXfPYLMd2/m/Mq+OePbGKf8P8iZb/K/xXldgN/PXxJuLHu3D9VmSsvWkeB3hlzVRB+WMX6JvBhuwiWLZ3HQuFZsKxYDiFjEnNxpdnJ+zn41c/TQ4KxMolcXx3d9e3edqDTKKxfWNnsc1T+iW7wz4bFWCBlWLOpsBElknKKRRbbSFzFaQylylD4y/4dtqMqtj3F+432ORHu9fVw7bWVvLtrz5Ddn15zmQGGmU+l3rWTb15401NjclUCf03X+3arjtyM4ury1LY+fKrzGYCukdQYP3tY+Dli07sUQHs19HogoUQLDUZ+K9ySN/P2kS0iFJqWdYlT44Hg4iX4j48vR4MGoqJO0HbWYlmcF8poT20tpcjNSuNhRY/fmFSOxQ6/a92xlg5k9t5+xvcakH8LqxoSZ6jLt6vtaixMFb+A9mePXv27NnzKHtedvF+ZuxUZhnoPXX21NlT51HqHHfx/sEgy02t97fOnjp76jxGnVe7/uE510j/kinmwN6CZWCtsXsa7Wm0p9FOGjURLwELQwp1ZbxKUAkseMJjL/XHQcDkpGQSoZyXrWqreMIXgS1NEseLwjhskkVlLDbxLW3FrbCSZHu/czQcWLVEizKpUEXI2N01GiD9ZLmaLS3/F4FwJ+a+ilUrdK9Cvxm8GeyMSqaPRKTuQFhhwNzaObAMS4TeGTYYPyVwQ6KWg7S2EudX5BbKMwVhwQ5rKvwDFtp8Pjo9ByMetR/Olgj57a+R32Q6wy5XXYXTe1FWgYErXXclWK2gtv3cylNrglXoJYwfmgEr27YHEIT+yUquDzL84EFkH2xJ6ONFqMS6OE7vGk+L3PgytKDtFpTQBdaFHRj0j7oEuTj3PE9NWdbaH/Z6xu4kFkysbVDbRKITQMkUSEtLFst6LM3ehxH2KWRkR30CV2DA8oyfSSzqaT815bJ39PB3qsw0LoXUcZvCxSfDP64/vBv23p+fnH64Ou0d9Qd9vA+KKHGwFHptHl4VbftuB75Jdri93rX20b5X9329upZzCPcYV0pI7eVdq4JsT7wce/I4voQttbDCsTbmiwVV+dqqpqHXPi1PxpPVKUhPTcQLEFnAf1CZ+UnYuN6I8pO5qr20vd1/aKKlxzBNocKv2k7WDvWLj1cjOjPaPmNpMvKx4o56kOKOJ9x3KsnbH0X+3YIroWe1JzMPMennX4MCaGE=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query users (alpha)
+
-
+
Search for users based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
Body
required
sort object[]
Array [
]
page object
filter object
+
-OK
+
-
Schema
page object
items object[]
Array [
]
-
-Bad request
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Unauthorized
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Internal server error
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx
index 0bd48cbb727..2ec96af97d0 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-cluster-topology.api.mdx
@@ -5,44 +5,143 @@ description: "Obtains the current topology of the cluster the gateway is part of
sidebar_label: "Get cluster topology"
hide_title: true
hide_table_of_contents: true
-api: eJy1Vk1v2zgQ/SsETy3gWm57CXLzOmngRdsNknQXaOADJY9ltpSoJSmnruD/vjMkZSm2mjhAFzBg8eu9Gc6bGTbcidzy83s+U7V1YPhixJdgMyMrJ3XJz/lfqROytMytgWW1MVA65nSllc63TK/CfDjsv3Ph4EFsmbSsEsbhljEfcQO20qUF5Gr4u8mE/v4PnkyXDk8SvKgqJTNB8Mk3SxwNt9kaCnFMfoeArYlEJjpqA//WYB2Bu20FuFmn3yBzOK6MrsA4GbxKjf4Oxh6DT5mSlgxkcQvaLxwTBlrLcQLdiN71mIQxYovDslZKpAqnnKlhxKWDYoDo2uiNxCkmy5U2hXed4U9EYlbqJTzvCO2aL4cvqS4lXgd79SDRZEKORr/22Gx+wZDZxydQ9tgkRiZHhY14MC5MvX/HdyO+1tYNE9JKKQrwuAZEhrT5MIF1BtcIrtLmF3C0cgLUU7ZSzCRBPhnqbhcrRClyWDLPGjRJozJE/Yi7DfqLg7ynZPvovCju+/PPBB+D3Ep2f+TEuzOaRHyIfeFHKYTkvxErx2hjm/XRCYqaYLncQDnIG8M/4lDWBZU0BWIZ7VBKP/hPWYrMIQRfkOpAKLd+zp62GIXdrVEnWRCOUDDrsvteol3IjwYgAt0Hv27BOM1usETIUK+OYxAvI+4ZUH8P9g+/d4468dMxVW/lz4EYEDZanSJ2r1DJsl93TwnyYbF6lDAzXZe/SMyOu5c5VCJtham6ZCIz2trfYE2bgkjwAbWgzbA92EhWMq8NZmrvBFv5I7HIDdbsl9gSe9jfTwU8RrrV3VeAFNhVODikvQOSnhzuYku7iY0ORbGj9QLcWmPK8xx8URCUEzxpOyBOWTAb39ruG14bhatN6KS78yRpqETvzhsqrbtkQ45uhJFkgy8rXW1fiVrRfSidCeWnDx8bjyp+9HgmirpcCnbGbi5v7zrXH9X5FvpscjYZRPWFfxhxej1nwUMP2n8jtLBr56pB2LD5FODdbkEXidVEuu0tHYvPBkCVm2kdClGMZuTz6DQOm3AmfHxolfXnP3c+takX+OMx1MeG8F5d4ZPx2yNvyFiSdaYLPOv1jt2ROglW3Q6vJ3hMCiAZ0ZNBFH3aj2GFRWGzt2MKSlAOuWZRNjki1+kY6ZIsHNv/p0qnSYGvwSRS2GQ2/fTl88X0zcf57PLz7eUbRBy7H847X6FgsMf27LgC170VOxk/crjp3oq/6e0ZY+fgh0sqhYCkJu90E5Pqnu+tWbSPnnveNKmw8MWo3Y6mscWaLc4vujyiUehX1NAoC7/DlmKWZVA5n3Cq9m+HwzcviW6f31eXpJb/AA/VJdQ=
+api: eJy1Vt9v2zYQ/leIe9oA1XK6l0BvXpIGHrouSNINWOAHSjpLbCVSISmnnqD/vTiSshVbTRyg84slivd9d/zuBzuwvDCQPMBF1RqLGlYR5GgyLRorlIQE/kotF9IwWyLLWq1RWmZVoypVbJla+3Vv7J4LbvGJb5kwrOHaMrWeQQQaTaOkQQNJB+/nc/r7P3gyJS1KS/C8aSqRcYKPvxji6MBkJdb8mPy+RDa4SGR8T63xsUVjCdxuG4QEVPoFMwsRNFo1qK3wUaVafUVtjsEXrBKGHGRhC7Mlt4xrHDxnthRmiG7ExLXmW4hAtlXF0wohsbrFCITFeoLoRquNyNEwIddK1y50piTjgZhJlePrgdCuZT59SK0Ujy2yX56ELQUhB6d/ddhsecnWyuvjKUdsQlosUEME3jm/9Nt76CMolbHThPRF8hodrkaelUIW0wTGaiELgmuU/gEcfTkB6iVfSTNBkC9Kvd/Fai55gTlzrD4n6U161Y+4B9HfLPKOku3UeZPuO/tXxF9e7lJ2Z3Li2WlFSXyIfeneUvTFf8vXltHGoepDEKQaZ4XYoJzkDfJHgLKtqaVVyPPgR1WpJ/coJM+s2CCsKOuQV7Z8zZ+hGfndg1MneeBNSMxW7p9z5Dms+j4CKyydB9wMYECrG9RG+H51rEE4jLBnIvtHsL+7vUu5Vm45lOqd+G9CA8KWbZ2iHjcqIcd99xSRD5vVs4K5UK38QWHuuUeVQy3SNBp5znimlTE/wZuhBIWSH3hmlZ72J1NyLYpWY85GFmztTEKTm+zZb/ElzLC/XxI8KD3k3b+IKbJrbziVewcko3S4DyPtNgw66OkXQY22VDkkUKBrCpxqAuJhAkIEBvXGjbaHDlpdQQKdn6R9Escdteg+6ai19vGGAt1wLcgH11b2vX3N24rOo1IZr9zy4WXjWccPEV/wupU5Z+fs9urufh/6sz4/QJ/Pz+eTqK7xTyMubpbMR+hAx3eEAba0tpmE9ZtPAe77FR1k1mpht3dkFq4NyDXqResbUVAz8Dl0evebIAoPH4bM+uOfe1faNAuceZD62BEY9RWYz86OoiFnKa0zVdetdPkuCzdJGB8FNkr4SmRIaURXBl6PaT/6LywkNjubkSg+cyg0k8RxIWzZprNM1XHmzXb/aaXSuOZCxoHCxBeLPz9/uly8+7i8uPp0d/XubDaf2W/WBd8oY2suR35co93fFfdp/Czgbn9X/El3z6CdxW82biouJGWTC7oLRfUAO29Ww6XnAbou5QY/66rvafmxRb2F5GG1ryN68/OKBhpV4VfckmZZho11BVe17u5weOelpNvV9/UVZct3D9Ul1A==
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get cluster topology
+
-
+
Obtains the current topology of the cluster the gateway is part of.
-## Request
+
-
+
-Obtains the current topology of the cluster the gateway is part of.
-
-
Schema
brokers object[]nullable
-
-A list of brokers that are part of this cluster.
-
-
Array [
partitions object[]
-
-A list of partitions managed or replicated on this broker.
-
-
Array [
]
]
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx
index 0991f335d07..2931a312a5e 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-decision-definition-xml-alpha.api.mdx
@@ -5,61 +5,196 @@ description: "Returns decision definition as XML."
sidebar_label: "Get decision definition XML (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWEtz2zYQ/isY9mJPLVJJndTlTWM7blo747HltjO2DyC5FJGQAAOAeoyG/z27ACnJktzmkOlJB43wWOzz2yUWy8DyiQnix+ACUmGEkiyDXEhhcRg8nwQZmFSL2k3j4A5so6VBmh1ixg375+Y6fJJPMo5jqSw8yXEhDAOZ1UpIy3DMka6sC85y4MgKcCFjSItEPCkhY8jonFeNzDhLy8ZY0IapxjKVM1sAS9QcJdwDuNljT3rG7i7vx2x0+5GpKeipgNnzUcRrYQZWqdJEqScc4NJAg7E7C4P+XFhlP31tQC9o6/hJ5kqzvNEoTqO1lovShM7CJxmcBDXXvALSEn24DCRO0E29ey5W3vkTFkgtyIc1twWONXxthIYsiK1uYNvRY7SOGyMmEn3yBRa9/Xscf8JmhUgLxlNrKAicNVKgBUxkIK3IBSpORliKRX8+RA1MWkDFg3gZ2EVNamOMYAIat5C+4tYvvT8N2vaZFDa1kgYMnXg7HNLfrtIIgX/RlSBgmjQFY/KmLBdMO0BBFjpvpgo1kNapBHMbzauSxjuKGquFnKBabXsSnL6mygrR6zCwK7BOxRzjiFLZjdLQh5VxHNdaTdFxGRPSGdFbjcjLFjta8rouRcqJdYQnEcHVz58NabCp9UvVRuzWU3ZymUo+Q2opdJ4w8dIf7z6cs99O3/36fFRYW5s4imazWajzdACZsEqHSk8inNKP6I5DhmajDRVfsATxk2XOaF6SVTVoKwDdX6NbcpEyq5yBndqMXOvt65zs1SKMrw6vQ7Adig3INFoE23AesYe7jz0gF3hgV7Q7k/OmJB48wZyPk5LLLwGG2Apb7hW6LcU0VcX1KlteCkBGxmLVMf8J+V/e7vAmQP0+Ht8yz4KlKoN1WnWCyIgKoVY1VRAjLnHG5372fjhsiSdF/DsskQzmNZrvoLVtDoKjWuPWGSYk6iXTHxUZpcVEbMtFQetYBB2IL7xFfSqe7k/FVSmYCVs4nhMxBekq2wyBT1+AXGFBPmTkISMPGfnjMvLdvo8j2kJe1oRD0BpdptK00XgZoatE6djTJ7qXTVcVvCIdcu2Qa4dcey3XcBMbgULhhT6YgEMOXfTjIOo/foP1PdhEy709QuuuvBgp7EX6nqLR6LJg6ROqxTxYFsrYNl7WSts2mlK0plwL6p9ccGnbJ14PqFKlvHTL+wJLG9S49AZvNVVX3MKML5yjSeRL1mfDs+FerkT6Ckdq07yFHpYbpaJnSzm/l60n/h7GrmkxgIVN2MU9HfPuSQBvFXrUUHBWcOnkOe4090S44gcfehD98ffY4UBgX+iOd3jYVYSigiH0mg/DN7vYQ2UphVJV4VlXRxF/7oLENwzrumBKLiy2gBcfkts1mj3Ztd9hf3mJ7E1IQfHI6cvnBDk3SYji+uZ39Z+UKokqLmTUiTDR+ejm4dPFaHD98fzy0/3lADmGdm6d8TUCpuJyQw9qq/a1e9RqHbmG/3jb/uX6S3J4Vth+VuhQ6ZpgLIRCUp64cC67svIY7CsreDR+7fGBKgtmhK8Oj8FymXADD7psW1p2uuH687qYuOqTCeM8GMQ5L832O8VmEI/uuheNY/Z/vF7sdVG3yOXCFcWyoRkOUYdXn2XaZzxYAM8w38liTztKU6jtBpfVgwSVlVWlv7qkevANA/ewdw==
+api: eJztWF9v2zYQ/yoH7iXBZMnp0q7Tm5GkXbakCBJ3K+D4gaJOFluJVEnKjmHouxdHSbZjO1sHFHvygyGTPN7f3x15XDHHZ5bFE3aJQlqpFaSYSSWd1IpNA5aiFUZWfhize3S1URbSfWLgFj7d3oSP6lHFcay0w0c1zqUFVGmlpXIgLXAFE15UOYcMuasNTk8igxkaVAIjvzLoVmxYpqfAVQpKO0DFkwJT0AoueFmrlIMoauvQWNC1A52ByxES/RQ+qgdEP5r0pG/h/uphDKO7a9BzNHOJi+lJxCtpB07rwkaiJRzwSg4MWrc3Mej3hWX609cazZKWTh9Vpg1ktXE5GkjRcVnY0HvgUbGAVdzwEklLFk9WTPESWcx6912uvfcnLlnAJPm44i5nATP4tZYGUxY7U+NuIMY5ArdWzhSm8AWXvf0HAhPAIpciBy6cpSBxqJX8WiPIFJWTmUQDZISjWPX7QxYwK3IsOYtXzC0rUlsqhzM0LGCZNiV37dSbc9Y0U1LYVlpZtLTj1XBIn32lP93e/IOuBBFbC4HWZnVRLMF4wGEaem8KrRwq51XCJxc9lQX931PUOiPVjDVN0wTs/CVV1ojfhAHeo/MqZlwWmIZwqw32YQVuECqj5zLFFKTyRvRWQ6LT5Z6WvKoKKTixjiqjkwLLnz9b0mBb6+eqjeCupezkgk4+o3AUupYwaaVP7t9dwG/nr3+dnuTOVTaOosViEZpMDDCVTptQm1lkMkE/ojsNYZyjQSj5EhIEnqbeaF6QVRUaJ9GCrVDITApw2hvYqQ3k2ta+zsmtWoTx9eZNCHZDsQWZ2ki2C+cRfLy/7gG5lGq2L9rvyXhdEA+e6NrFScHVF9YEzElXHBS6K8XWZcnNOlueC2gCZh13tf1XyP/yao83Aer38fgOWhYgdIqbtOoEkRGlVLKsSxafD4cBK/lTO3ozHDbEkyL+HZYowKeq4MpDa9ccqaDc4NYbJpV1XIkfFRlt5Ezuyg1Zs4kF60B82VrUp+L54VRcl4KFdLnnOZNzVL6yLbj1J0Cma3XMyGNGHjPyB2bk60OH40gBedkQDtEYbUALURuDKV0lCs+ejuheNl1V0Lpjrh1z7ZhrL+VaE7ASXa5TFrMZeuTQRT9mUX/4DTb3YButDvYIjb/yBsyimfc9RW0KFrNVm1BNHEWrXFvXxKtKG9dEc4rWnBtJ/ZMPLi23idcDqtCCF376UGBpgRqX3uCdpuo9d7jgS+9oEvmc9dvh2+FBrkT6Akdq01oLW1hulYqeLeX8QbYt8fcw9k2LRVEb6ZYPtK11T4LcoBnVFJw1XDp5njuNWyIWdH/e9SD64++xx4FUmfbbOzzsK0JRQWNbzYfh2T727q59CgldlrXydVTN2gsS3zKs64IpuQopUFmP8q7R7Mlu2hX4q5UIZyEFpUVOXz5n0uV1Egpd9s3v+psUOolKLlXUibDRxej244fL0eDm+uLqw8PV4Cwchu7JeeMrbV3J1ZYe1FYdaveo1TrxXf/prv2rzUlyfHb4r88OHWp9k1wVXCrKIx/uVVd2JuxQ2WEBi196nKDKMw266jFhq1XCLX40RdPQtNeNxZPpptj46pRK6z3I4owXdvcdYzvIJ/fdi8cp/B+vGwdd1E1ytfRFs6hpxAL2BZcvPts00yZgOfIUjbe4pR0JgZXb4rJ+sKCysz4J3l9RvfgGwa7HxQ==
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision definition XML (alpha)
+
Returns decision definition as XML.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
-
-
Path Parameters
-
-The XML of the decision definition is successfully returned.
-
-
Schema
-
-string
-
-
-
-The Decision Definition Get XML failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The decision with the given key was not found. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx
index ab9841f58ba..2b408c1ea20 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-incident-by-key-alpha.api.mdx
@@ -5,56 +5,285 @@ description: "Returns incident as JSON."
sidebar_label: "Get incident by key (alpha)"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get incident by key (alpha)
+
Returns incident as JSON.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
Path Parameters
+
-The incident is successfully returned.
+
-
Schema
-
-The incident Get failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The incident with the given key was not found. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx
index b581b01f02d..27de7c051dd 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/get-status-of-camunda-license.api.mdx
@@ -5,36 +5,67 @@ description: "Obtains the status of the current Camunda license"
sidebar_label: "Get status of Camunda license"
hide_title: true
hide_table_of_contents: true
-api: eJydVE1v2zAM/SuCzmmc9hTkFnRZ0aHrhjZdD0UPssPE6mTJk+i0geH/PlK2k7RugGEnWxT1Hj8eWUtUmyBnT/JGZ2ADyOeRXEHIvC5ROytn8keKStsgMAcRUGEVhFvHU1Z5DxbFpSoqu1LCdBAj6SGUjn4JuZYXkwl/TqP2OO/Rh6iZs0h+DKbKkuyKwZKXwIi1DFkOhRpSLQmsD4jB95Bk/VNBwDFh464E8nXpC2RI59K7EjzqNoWtMnrVV2hI4CsQ+tOohQ4iPh6JtTIhujny8686ptTRps4ZUJYMtjJGpYaM0b8ZyQ5pGT0/Uj9qYygNrLyN9D0t44ouh93pinb0Ab22G9kQG2pk8l4Od13d6K7h6wIwdyu630CsksKcDskBMYDfgmdF1bLyhi7rti/NLEnq3AVsZnXpPDbJ9oL8t8przjeWma/bHNeqMvQrjcuUieaPsuSu8oVVBXxMcCruFvdLcaUQXtVuLClwpnwPPZ1MJ5+isusJxPnPa9FmGEGPFdfD5ojlp7Ct878AN80zF5LGQuPunp+15UlBefDzimte973r+CJ6lFJ0Ikv789X5QnFc3x6XscHarl183jV6GAh3hVrYRj4Znw+y4WDXzovMFfQ2jqHdiFeNOc3WAS8zVUBOaK9h5uV+HdF2OhO/WkZxPuamtMrh1ALJZkPIVTomuiRrn+2/qXFpUtAm6SUYksv594fbL/Ozm+vLxe394owQx/iGMfmSBFMoexTHFRzvneGEvMu8Pqyg/1qLXcsQ3jApDT1nEcVc626UnvalIgm04/Ak6zpVAR68aRo2087yO7I/H6aHTwSVg1pR73n2fsOOO5VlUGIcM1Mx9WBvstT2Q321YI38BUgnF3I=
+api: eJydVMFO4zAQ/RVrzqEpnFBuFdtFu2LZFZTlgHpw3Glj1rGDPS5UUf59NU5SCgVptbk4icfvzZt54xZIbgIUD3ClFdqAsMxghUF53ZB2Fgr4WZLUNgiqUASSFINw6/SlovdoSVzIOtqVFGaAyMBjaJwNGKBo4Ww65eVz1BHnLfoxqnKW0BKDyaYxWkkGyx8DI7YQVIW1PKZaVCjGhBh8Dyk8PkUMNIEMaNcgFODKR1QEGTTeNehJ9xK20ujVWKFjAh9R6A+zFjqIdDgTa2lCCnNUoX/WSdJAWzpnUFrIwEZjZGkQihTfZTAgLVLke+p7bYzwSNHbRD/SMq4YNOw+r+hAH8hru4Guy4A0Mfloh5uhbtDxk0GNVLkVFLDBVCVJFRSQvyIG9Fv07KgWojdQQNv3pSvyvK1coK5oG+epy7dnkMFWes16U5l5u9e4ltEQFGCckib9fm9L7ipvWFnje4Hn4mZ+uxCXkvBZ7ibQZcCUb6HPp+fTD1E59BPE2a9voleYQA8dN8JWRM2HsH3wvwB33ZILqaLXtLvlY315SpQe/SxyzduxdwNfQk9WSkGQDS9fna8l5/X9fpEarO3apeNDo48T4a6gD33m08npkRpOdu28UK6uo01jaDfiWVMl5IEwZWIgFrT3MPNyvw5oB5+J3z2jOJ1wU3rnsLRQ5PlGUxXLiXJ1rvpj+7U0rsxrqe1owZBfzH7cXX+ZnVx9u5hf385PTifTCb1QEt+4QLW0B3lc4uG9czwhb5S3r1fQf12LQ8sIXyhvjNSWTZS0tsMoPexLtcyGcXiAti1lwDtvuo5/P0X0Oygelq/Tw19dBhXKFfo0e39wx51SChtKY2YiUx/dm2y1/VBfztkjfwFIJxdy
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get status of Camunda license
+
-
+
Obtains the status of the current Camunda license
-## Request
+
-
+
-Obtains the current status of the Camunda license
-
-
Schema
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
index 0eff1841ebd..824e95bc191 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/migrate-process-instance.api.mdx
@@ -5,31 +5,31 @@ description: "Migrates a process instance to a new process definition."
sidebar_label: "Migrate process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: eJztWN1v2zYQ/1cOfFmLKbLTpV2nhwFekm7Zmi5InO0h8QMtnS22FKmSlB3D0P8+HCnZjiU33cfLgAQIEpvH+/z9juStmeNzy5I7dmV0itaCUNZxlSKbRCxDmxpROqEVS9ilmBvu0AKHck8YnAYOCpeblQxnQgnaGd+rcS4sGPxcoXWQcgWpVo4LBUUlnSglQsHLUqi5V2iqlPZZUurVbJen6JaIClyOwFMnFniv9n35xgJKLFA5C1xl4LiZo+txbCMW36t7dWsRHPnpNFTl3PAMvxjoAo0lJXq2I6YNOH2vOGRiNkODqs9uBBjPY9L0CbGEla4MmEqpNn6yY6Eqj5w+yrhDWAqXU8j3SlL+tzpFURq92ATBIlZywwt0aKima6Z4gSxhjfxFo/w3XLGICappyV3OIka1EQYzljhT4X7hxznCJ1xRqJT4bk5y7sDmupIZTBGKgJMsZhGzaY4FZ8mauVVJrgjlcI6GRWymTcFd+OrNCavrSfADrftJZyvas+8WwQaVoyVellKknDwcfLTk5rprTE8/YuooLUaXaJxA61c9IhrAn23qQmlJ1odj70GQ0220BzKjKQlPhh6xBuAXO/DfiYMbw33JHBa2L76uz72ECmJThFwvve+83HJlZnTho7C6MikeCJcEDjKqweCjZAdt58HKRdaf4cYJuDjbTSl5tJM/64xQc8pWcOAf6RTqUU1anfUuB+46TndNTiLmhJO47YtXj0l22amot0Kp8ai9Rt8gUux6PwLTLnrspbm2qGC68tmvLJpAuaWQkghXcuN8H5ISDKbaZNRtLfVWNW/rKixsbMdwWVlHW3+EIQgP7YXIMAsFfAqvESuEEkVVsOR4P3Nf4FY/yp9M5HXoCayugy1bamUDtl4NT/pr3yGisDttqY7YyXB4cKfPBGTccdqmtIMFl8K3swMNqDR6KrH4ttuI9gt7FSQhQ8eFhEBg4FtqZiAU3F2/O4UfTl5/P3mRO1faZDBYLpexmaVHmAmnTazNfGBmKf2S3MsYxjkaov2KysqzzKedS9iyEWyJqZiJtOVx4zZQvR9V/lDf9KvrPe7swKMyotOMRnB7fQEiQ+XEbEWA7Jj2e2a8kqSDT3Xlkqnk6pOnesBG1+i+FVsVBTe7h9SOgTpi1nFX2SdPou9e9bbTX8bjKwgqINUZwoyOeiJVYyjeZcXJcEhgfwif3gyHNemkin9FJArwoZRceWjth0N3Jm2wwY8PbHNh+28qo42Yi327se9dLU8bEJ+FiAIvT/4OFYlTM12pZ049c+qZUwc59brvkBopusOgIRyiMdqATtPKGMxgmQu5IVxru7lSPzPtmWnPTOtnGr2/0OU6owexth469C5O2KAh09HmXT5Ydx/T9SDcLcmxiFk0i/b9XRnJErYOjKqTwWCda+vqZF1q4+rBgsq14EbwqQwgpeXAvBZRUqdc5sGrbmVpgR75bcSnvKhUxuEtXJ/fjOFn7nDJVz7TZPKx6rfDt8NerSR6QOPo6gJChAGXO72iVUuk71UbhL9GsR8GWEwrI9zqhraF9EyRGzSjioqzwUtjz2unz0GIRc0/71oU/frn2AOB+tz1dtBw/sCLsmHpFwYDwwOP9LueJ+4Wwp2X6ubFOel/Cw49J2bau9Mgtpspgk2YP7GEDePjLjuuLjzJU10UlfKdXs3DIInvZD6VlXWU8YhJkaKyPg3N1KgVex9W4I9m4nUcE2oCtNsGPxcur6ZxqotBGrZt/k6lng4KLtSgMWEHp6PL2w9no6P3F6fnH27Oj47jYewenK8OEbDgaseP5lnYuUnuB73eHnDPs8r/wayyoa/DBzcoJReKGoqH1brpv3es039ZxJLecea2BU+ipo3esfV6yi3eGlnX9PXnCs2KJXeTbdf1BM6Epf8zlsy4tPvzz11cvbhuZh0v4V9MRXsjb2d9auUPBVnRJxaxT9R9+ka49aSOWI48Q+OjCIKnwdejManbKurMS+uo3TFKUyzdAdlHl0NqWpuT8ur3mzE12WZWW+iM9hq+pHkyXwbndbmZZfrv1kxyNa/4nGSDTvr5C+sXoEo=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Migrate process instance
+
Migrates a process instance to a new process definition.
@@ -40,22 +40,203 @@ Use this to upgrade a process instance to a new version of a process or to
a different process definition, e.g. to keep your running instances up-to-date with the
latest process improvements.
-## Request
+
-
Path Parameters
Body
required
mappingInstructions object[]required
Array [
]
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
index e5e565fec20..14c59f50ea7 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/modify-process-instance.api.mdx
@@ -5,31 +5,31 @@ description: "Modifies a running process instance."
sidebar_label: "Modify process instance"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Modify process instance
+
Modifies a running process instance.
@@ -39,27 +39,242 @@ to terminate an active instance of an element.
Use this to repair a process instance that is stuck on an element or took an unintended path.
For example, because an external system is not available or doesn't respond as expected.
-## Request
+
-
Path Parameters
Body
required
activateInstructions object[]
Array [
variableInstructions object[]
Array [
variables objectrequired
+
-JSON document that will instantiate the variables for the root variable scope of the process instance.
-It must be a JSON object, as variables will be mapped in a key-value fashion.
+ 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ title: "ModifyProcessInstanceRequest",
+ },
+ },
+ },
+ }}
+>
-
]
]
terminateInstructions object[]
Array [
]
= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
-
-The process instance is modified.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The process instance is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx
index 993b60b1883..48866f80e70 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/pin-internal-clock-alpha.api.mdx
@@ -5,29 +5,32 @@ description: "Set a precise, static time for the Zeebe engine’s internal clock
sidebar_label: "Pin internal clock (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztV8FuGzcQ/RViTzEqa5XUSV3dVMdpXSSBYcsNUNkHanekZbxLbkmuZUEQ0N/o7/VL+obctWRLRnMoerINyyI5nJk382ZIrhIv5y4ZTpKT0mS3yU0vycllVtVeGZ0Mk0vyQoraUqYc9YTz0qtMeFWRmBkrfEHid6IpCdJzpenvP/9yQmlPVstSZKyzf62/FKSDaJgQyolaaU15TygvLFVSaSekDyKuhqmZojwakToXuSEntIEj+Z3UGUHj2IiskHpOYQ9L9rYMVI3zAj5FK0LOYUAslC8ARdMiyANJVUPTtR4Oh1BOUFrAM9J5bYCAvZRaTGRZF1LMSPrG0s2r1NKMLMGLNKwctiuuX+UHwdtKLtm2a6ZfKQOmztNrDSdmDQsDc0nSYVOwfq2TXmLpjwZO/WTyZTJchaGylCdDbxvqJZlBULXnJVnXpcokJyj96jhLq8RlBcLI3/yyJuTNBOvQW1tTk/WKXFjtkPPgcabHCB/dS3aZAw9nqTZZISpVlsg9HMgdo1kUCrObYLvCNGW+CXcfRlsnmAhzspgAVyrp49S7o2S97m0hnGy5BQJ65UveHRh5rvRFjAw2xW2uNtpFOG8GR/uBRNcW0iEPWUbOzZqyXHaEAIo9VNuLGBlKYPVoMNhvqEOx4ZSopZUVoQSYQpVyTum5QK2owClNc6TujjhMzyQVKZuWVH23m9zH9kfiPEqKnLxUpYhJF0AdBafwC6gmFx9OxI9Hb3+4eVV4X7thmi4Wi76dZYeUK29s39h5iiH/sdxBXwAbeNpyWeYQg02U9IZOXfiyLpyt24KT3w+c/hcuhtUHxjpvEahtrjRWJU/70UhcXZwJlSNsarbkyO6YDntmsilZh5yaxg+npdS3nMeWW7tGn1pxTVVJuxRmtscAFHEjbLZgPMP179/s6GbW/DIen4uoQmQm73opN8ZoiEFUSquqqZIhyIeRvI+jd4PBmnVyxr8BCUh9XwN+oNZTOCBHZZDnqC0AQyv23GT/o8wYq3AuPLHbDw2gq/OWxO8joljlb/fVG7A8HC1kLUJmsqyxXH1oSmVQz7Xe2W5b6kulvVTaS6XtrzQs4qgqDE7hpG4Cc6QvMEjDCYqxI3tHlq+IKziDOCSrWCVrkHtVGOfXw1VtrF+nd5yCO2mVhJWQMV6O1dSxBFplGab3ZYsXNA7PDsWJrBqdS3EsLk4vx+Jn6WkhlyF6bPKx6uPB8WCvVhZ9RuPo/ExEhJFrW/XfqeVC3qs2Cn+L4vX6hgOJXqX88pK3xfBMSVqyo4Yj/sCB1l7QzuMohJn45UPHjF+/jENyuXddbC6Pp/e4g7SVt7nsDQLfZiZOt/erHY85fch1hDjov95lHlBxAWWmwt7QRcG+9ma90ZeVuIAz8l6CVku4rbFdTuyW2Y9xRfwWLYrXfc5epFjXPOfQ3Ez7MJdmcdvD/2lppim/HNLWhEtPRp+uPr8fHX48Ozn9fHl6CI19f+9DlGowq5J6yw/cLJ+8VMSrcKU/eAp7tTk+Xt5D/9d7qK0GT/c+RVdV4Roe2LFqe9Qkybo3a+wzk2S1mkLNlS3Xa55GUVi8piY3m7bEIygqSOYoKm5qt7RkVsYMH47ZLIuXDZvfeWute92OEd4VtX9G9tHFgqv/ocueX425lttnXoUjCZNWLvgJiM9hco1fDEwgX2gTYX6V4GiZN3LO8lEt//wDv315Tg==
+api: eJztV19v2zYQ/yoHPrWYIrld2mV689J0y9AVQeKswOw8nKmzxVYiVZKKYxgC9jX29fZJhiOl2IkdrA/DnmJAsEge73d/fnciN8Lj0ol8Kk4rI7+Im0QU5KRVjVdGi1xckQeExpJUjhJwHr2S4FVNsDAWfEnwB9GcgPRSafr7z78cKO3JaqxAss50pj+VpINomADloFFaU5GA8mCpRqUdoA8iriGpFoqKCIK6gMKQA208YHGLWlI60xMDskS9pLCHJZMdgLp1HubUowAuUWlYKV8CgqZVkHce6yad6ZnO81wbTzM9KZUD0kVjlPZsJWqYYtWUCAtC31q6eZFZWpAlLSkLK0f9ikvr4mWwtsY1Y7t2/pmkBz9YOtNKw6JlYbBUETpyaUCfaZEIS19bcv4nU6xFvglDZakQubctJUIa7Ul7XsKmqZRETlD22XGWNsLJkmrkN79uSOTCBHSRiMaahqxX5MLq4DkPHmZ6UhLQHbLJHHilgRojS6hVVSlH0ujCsTerUslyJ9iuNG1VbMOdimQwgomwJCsSsTC2Rh+n3h6Lrkt2PJzumHWTCK98xbsDIy+UvoyREV0Xt7nGaBfdeT06PuxING2FDlwrJTm3aKtqPRDCm0NUO+hxOtOiS8TxaHQYaPBiyylo0GJNnixTqFbOKb0EY5nryoGmJXp1SxymJ5LaWDOvqP5uP7kP8cdwESWhII+qgph0QAdRcE4FezW9fH8KPx6/+eHmRel94/IsW61WqV3IIyqUNzY1dpnZheSH5V6mMCnJ0sBlLArFmFjBlk5D+OQQzt5s4OSngdP/wsWwes9Y563Sy12utFaJx/1oDNeX56AK0l4t1hzZPeiwZ4FtxTpwblqfzyvUXziPPbf2QR+juLau0a7BLA4AdIngRtjuuPEE179/vaebWfPLZHIBUQVIUwy9lBtjBGInaqVV3dYiPx6NElHjXRy9HY061skZ/wZPNNBdU6EO1HrsjtJQG0s9f4JjSjvPTfY/yoyxaqke46ahAQx13pP4XfQoVvmbQ/U21ttPC1lrLBgpW8vVtypVFdRzrQ/YfUt9rrTnSnuutMOV1iWiJl+aQuSiaQNz0JciF1n4gopEOLK3ZPmIuBGtrUQuNrFKujzLNqVxvss3jbG+y245BbdoFc6rSDxejtU0sKQyEqswfShbvKCxpsGLU6xbXSCcwOXZ1QR+Rk8rXIfoMeRD1Sejk9FBrSz6hMbxxTlEDyPXdup/UMuFfFBtFP4WxV13w4GUrVV+fcXbYnjmhJbsuOWI33OgxwvaeRyFRNK/vB+Y8eunSUgu967L7eHx7A7rpq+87WFvFPi2MHG6P1/tWczpI+uii6P01T7zLs5DAUlT160OXVQvh5P1Vp+sWufZ80RUSpJ2wRxO7A7sh7gCv0dEeJVy9iLFhua5VL5s56k0dSbjtvv/eWXmGd8csh7CZafj364/vhsffTg/Pft4dXb0Kh2l/s6HKDXG+Rr1jh0XSj+6qcCLcKR/+djtzfbz8Xwf+r/uQ301eLrzWVOhCsfwwI5N36OmQg531thnpmKzmaOja1t1HU9/bcmuRT692bYlHnWJKAkLsqGpfaE1szJm+GjCsCxetQy/d9fqkmHHWEpq/BOyDw4WXP33XfbiesK13F/zalPwVosrvgLiSuRCJMIE4oUWEeY2okK9bHHJslEl//4B7St4Ug==
sidebar_class_name: "put api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Pin internal clock (alpha)
+
-
+
Set a precise, static time for the Zeebe engine’s internal clock.
When the clock is pinned, it remains at the specified time and does not advance.
@@ -38,18 +41,129 @@ This endpoint is an [alpha feature](/reference/alpha-features.md) and may be sub
in future releases.
:::
-## Request
+
-
Body
required
+
-The clock was successfully pinned to the specified time in epoch milliseconds.
+
-
-
-The required timestamp parameter is missing or it is negative.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx
index 292680ce941..4a312302dd9 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/publish-a-message.api.mdx
@@ -5,51 +5,203 @@ description: "Publishes a single message."
sidebar_label: "Publish a message"
hide_title: true
hide_table_of_contents: true
-api: eJztWF1T4zYU/SsaPS1TiLNbdpfmLQW2ZctCBkL7EPIg23KsxZZcSU7IePzfe6/lxHacsHSmbwUGEklX9/OcK8sFtWxh6GhGv3Fj2ILT+TENuQm0yKxQko7oJPcTYWJuCCNGyEXCSepkB4+y3gVrmpOslgyJVcRkPBCRCEjGtBWoy5BApVluYT3SKiU25kLDnNY8YShAnvjagNJpzAmXYaaEtCRUoF0qS1ZMWBIpDW6092hu8sTCrgfDUeXGuY7QVhvuN3kQkxykA2Y42qPHVPO/c27srypc01FRDYXmIR1ZnfNjGihpubS4xLIsEUGl1vtuMEMFNUHMU4bf7DrjkDPlf+eBBb2ZVhmH+LnBVclSjp/dBGO4uEJU1A5gANtrdcZqSDwt0ZFtUH/w9X5dOxn9oVoseMQgiTCFNqxI+VRdi+U+X2HNZEySd0KS1Bxhpf08irju5B4s49DX6onrlkUoAV9wDRNQiJRZN/XptO3DEFyo9VyF+yPMpYBykauL3djIrUzWWNsoT9A1Lk2u0R2YVbLxbyVsXG1cQJQSFD3KlUgSwpcQiN9G8rswxyQRYQ1JRMQxOUcOM7tZlHmSMD/hDjQQxZJpgRNmfxQbZ7ZihBny9f72BjAf5CngDTPHwrBiD0smLSw5WO6irecBgJZJeyiNbnUnh8QAWTpFOxRgedziycyBu4fQOeLJ4p5Nh6n6iSPQnWMdLUunzGTQJVy6PgyHL2dtBcnalmlA/wVHD+tssaVBQJ83B9hdCx7kZZ+LryDGa4vY50K/fZQv18Jlvy7G6aH8Q8xLEUJeQmYZEa43L1kiXioCbALcpD/9qBhjMnGSJOSWiYS4VCMxnKAPhqHzzO6+nJNfTj9+nr+Lrc3MyPNWq9VAR8EJB7ooPVB64cEQ/1DuaEDAeWgFKVsjwRtWkaaIzZkFrcO6WCtnMI8dzh9AgFstesTZ1hR6Cd09X8fk4e6KQEqlFdEae03PdKdFM1/lduQnTD7RpqJ9o7tWTJ6mTDcA7xgARcYym7fCOIDJnz/0dCMsfp9OJ8SpgAMo5NVJa2PAR20Ig0iFFGme0hGgC0bs2Y0+DbHnu4q/IhI4zp8zCN+dcDvh4LGkoM5OWxWYkOCXDP6ryigtFmLX7qDDrhrEFy4iR6iP+wh1BSnWCELDNR49XGul33j0xqM3Hu3nUfVsaGMFhyHNlKmgw2wMI68+94yXNYcaLDtm4RWnAOcgL7RwrCkB7EUMOspRkSltS2+JJek8tOGyY9cGNYkKWBI7y/3q4UL7Uf6cpbkMGTkjd5f3U/Ibs3zF1lU20WRX9dnwbLhXK4oe0DieXNW9w2Gv1Q82apHYe9U64dcoLss5JjKA4tr1PW5z6fE5XPv0OMcCbDFR26u049gJwYz78mWDlK9/TatiYy+7a65fl88szRwT3XWpAdnu5adZaV9Zhp3rQyPTLmznqap1vRIyUlUoNQD7SUFFACeXxeHgfR/skDjkLNx1YW+FQwB8deFgrSQHSW6se8wGsHJ88Goi3ohduxXyp7NI3g8QIA7Fm369AM25PwBzXuC2bT/9RPleyoT0ahPGOx9/e7i5GJ9cX51f3txfnoDGgX22VSGQTymTLT/qqz843jywdqItmoPq//GeoMa45c/Wg94pJKKmKkhRN6LZBn0Ge1OrFQGFXDuZ0aLwQeWDTsoSpwH7GuA8mzcgxRFojjmDu1jVu54qxJ+7dJ9M0Q8UT3L0p3fhKY83O8ZBwDP7ouy81VQnt/dT5Gr9IiSFIwhmNVvhSxL4P6KP8AsDVUGgagPVfEHhKFnkCJIRdXrx5x+EMmPQ
+api: eJztWEtz2zYQ/is7OCVTWlJSJ015U22nVZqHxpbbg+0DSK5ExCDA4CFZo+F/7yxBmZQoOe5Mb41mNBKIxT6/bwFwwxxfWBbfsE9oLV8gu4tYhjY1onRCKxazqU+ksDla4GCFWkiEIsgOblWzygI3CGUjmYHTYEtMxVykUHLjBOmykOqi9A4zmBtdgMtRGEi1MSg5CcA9ru3gVs1yBFRZqYVykGm0oLSDFRcO5toA31lj0HrpBrfq2iKp3Dq3I/SojdZbn+bgLULKLZI9FjGD3zxa95vO1ize1ENhMGOxMx4jlmrlUDma4mUpRVqrHX61lKENs2mOBad/bl0ii5lOvmLqWMRKo0s0TqClWcULpN/dBFO4NAN63g1gwKKtOuuMUAtWkSOPQf2J68O69jL6XbVU8Dn30rGYkQ0nCpzpj2J5yFdRoC25ghdCQWFfUqUTP5+j2cm9VvUwMfoeTceiUA4XaFjE5toU3IVHb0+7PoyqiDV6JtnhCL0S3zzC5Hw/Nvii5JpqO/eSXENlvSF35Bq0av1bCZfXCxdiiQom57dqJaQEXKKBpIvkF5mnJIFwFqSYIyXnZcDMfhaVl5InEgNoqogtuRH0wB6OYuvMoxhwCx+uvnyGTKe+QOUoczzLavZwOe1gKcByH209DxwqrtyxNIbZvRyCRZXtFO1YgFXU4clNAHcPoXeEJ0drth2m7ieBQJeBdayqgjJbamVDul6PRk9nbcVtW6YB+xccPa6zw5YWAX3eHGF3I3iUl30uPoMYzy1inwv99lE9XYuQ/aYYp8fyXxq9FBlmkHHHQYTevORSPFWE0uhEYvHT94oxhmmQhAwdFxJCqokYQTDBDISCm8v3Z/Dr6Ztf7l7kzpU2Hg5Xq9XAzNMTzITTZqDNYmjmKX1J7uUAZjkahIKvieAtq6AtYrtnOR1A0DhDedzh/BEEhNlNjziPNfVGsP39dQzXlxMQGSon5mvqNT3TOy2aJ9q7OJFc3bO2on2j+1asLwpuWoDvGKgiZh13vhPGEUz+/Lqnm2Dxx2w2haACUp1hvdO6XNitIQqiEEoUvmDx6WgUsYI/hNHbEfX8UPFnRKIAH0rJVdjh9sKhbUkbbPBTByaUdVyl/1VltBELsW93sMOuBsTnIaJAqDeHCDVRDg2B0KKhrQeN0eYHj37w6AePDvOoPhu6XGcsZqW2NXS4y1nMhs2+Z4dlu6mxiAVm0RVnw7yRLGabwJoqHg43ubauijelNq4aLqkkO4c2mg7s2qJG6pTLPFjuV48mukf5M154lXF4B5cXVzP4nTtc8XWdTTK5q/rd6N3ooFYSPaJxPJ00vSNgr9MPtmqJ2AfVBuHnKK6qO0pk6o1w6ytaFtKTIDdoxp4K8IiJxl6tncZBiEXNn/dbpHz4e1YXm3rZZXv9unjgRRmYGK5LLcj2Lz/tTPfKMtq5PrQy3cLunKo61yuh5roOpQFgPymkCI0NWRwNXvXBPp3UnE11UXhV41AtwoWDd5KcSm9dOGZLkSIdvNqIt2Ifwwz8FSzCqwEBJKB4268XwuU+GaS6GKZh2eNvInUyLLhQw8aEHZ6NP11/Ph+ffJycXXy+ujh5NRgN3IOrC0F8Krjq+NFc/YF3Dqw70W7ajer/8Z6gwbjDBzcsJReKUFMXZNM0opst+iz1pk4ruouadnLDNpuEW7w2sqro8TePZs3im7sWpDSqIpYjz9DUveu+RvxZSPfJjPwgcenJn96Fp4q2K8ZpiqV7Uvau01SnX65mxNXmRUihM1pj+IpekvAVvSKImK7LX7eA+tmGSa4WngASs6CTPv8AB+di1A==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Publish a message
+
-
+
Publishes a single message.
Messages are published to specific partitions computed from their correlation keys.
The endpoint does not wait for a correlation result.
Use the message correlation endpoint for such use cases.
-## Request
+
-
Body
required
variables objectnullable
+
-The message variables as JSON document.
+
-
-
-The message was published.
-
-
Schema
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Internal server error.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx
index 60a82c59d2f..612da39f2df 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-definitions-alpha.api.mdx
@@ -5,53 +5,328 @@ description: "Search for decision definitions based on given criteria."
sidebar_label: "Query decision definitions (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWUtz2zYQ/isY9JJM9UqapKluiu20bmPHtZT0IOsAkaCEhARYALSs0fC/dxcgRUqULDnjQw/yUwQW+8Lut8ByRS2bGdof03MeCCOUJCGPhBQWPtJJi4bcBFqk7rFPh5zpYE4ipYGsQW/IlBkeEhiciXsuCay0XAvWuZN3st/vS2X5nRzNhSFchqkS0hL4zCRhcTpnJOLMZprDQEiAFojYNPYMz1iSyZCRIM4M8DREZZaoiNg5J1P1ABKGnLuncUn6ntxeDEdkcHNJ1D3X94IvJi+6LBWmbZWKTTfwhG0YamtubGOgXa7rJOFP/2ZcL3Hq5Z1EB0SZBnHoCMtEbDrOwjtJW1RzoDX2gwqXtL9yj0LzkPYjFhveooGSlkuLcyxNYxEw9F73m0Efr6gJ5jxhbjaOP0ewOStqlykH/6vpNx5YEJFqlXJtBTduhdKOW0HFtGZLIALnJ+YpfCLB47DGyFgt5IzmLap0yHVzBuMjYllsUaoJaJ63auaOC4YQRlbYmK8D6G905RCUvvWeovkEV6Zsxp+krlZJTSeIJj4DLVsUtidh1g/98hr1j0Ui7JG0xuk4iOyGxQ2nbuqWrxd+4MCSP2VlvtM/N+CNyj+tHfJ2LNq/oLnXcWHgse4uM/58nfB/8eVBn757Q7dRZARZyowRMwm5/Z0vW2QxFwArLLAABvBDMinADiJCSBMBQaQd5FgEjh2408Fda2p3uSOUd6lyfnUNkkowOZ7/NUv48RIkUB+SAWhjhAeBQ3H6qE8LPseadOszNgFnm2OcZvc7TddYkZlm6Rzmmd2nBqJ/yjQi+V6NninInltVQHAm7bEx5qkPhlktqc8b8fbRZewmZO6n3gUKucdnk0Kt9jn9utfzqd0I2VK/iiMpqr/JgoAbE2UxKXl1XN179rr21IJglWXx5RbM7o0Y8EUktLFYiL6yOOPmaXAfsx9d+xjge4c+BfH3rth2z7Y+B/Q84f8J/0/4///BfwS2TfA4gPolMLg1b34A6R0fEsH1hocdcgXH2vK2Qxh8Bni4hxQNiZDOprIawIUsXD5aEmAlXOySn5ulYVO/AbnxlIVc4qEJQcITTr308e3HM/Lbm7e/Tl7MrU1Nv9tdLBYdHQVtHgqrdEfpWRce8RfpXnYI2A42JGxJphApYegsZzGpQI+YFHwTiYBY5Qws1Ca4396+A/XIzTbjYx26mRaNcBmQL7eXJfQtYUFT9Oa9awpX4f40ZvI7rWLjUFAOoIwnCdPrvNgUgLcZC5fxw4V0Dxb9MRrdEM+CBCrkFYAXgtCIBOItyeAOB8EJT+zBP73r9RwW4I4fYYkk/CEF811obZsDwZFUcesMExL0ksFz7YzSYia25W7mchHE594in49vd+Uj2IJe1hiHXGtwmQqCTMNtGktk7Njj2auUXXQaTrl2yrVTru3LNZhMuJ0rKNU0VcaFDrNzeOqWVbhda2J2fRuHYj9H40nKXTwyDe6hK588OcT8ag6s8v4qhRtA3r3HnblnWmDD0m0kTvskK4MnVgGL516B5ibiRP2MuNXF/J1ZvmBL59S0aPdVrN/33vd2ckXSPRyxL+ot9CFYg4WSLeb3Trae+BjGOV5LDAcQE3Y5xGXePVNwMteDDPdhHRqFPMcdnz0RjPgPH8uA+fOfkdtzhLTbqtl68cCS1Cdk1d3ac2vp7bsx1EN/94m/olif13v7D9NNfo3Dba9+mqw1XX1bd7zuy1asinas77lOqs6p74j21v3O3lY3c7zy21HvU+JY7lI1Um4vikRq7mrdYtrrvGomLew8Yk+gEljrChAk7kJYuNvVoqTo4SMqQZXieEYFudI7tyT75GfI1+Iu86qDEe7TsKw7M+CcTTsgrmzdr/9PYzXtJkzIbiHCdM8GV1+uzwftT5dnF9fDizZw7NgHf7FGXEiYrOnhz74733K8cG8rXm6bv6oq8OlFyVEvSoq0t/zBdqGqCIlR77Z4VUD0mO6CaFrGML5a8EA7pqsVOvWLjvMch50WMD6pcBmfQMCcs9AnA/2O6UfP/La1R6gOkseZa49s97DyVrliEAQ8tY/STmpV5+bzcIQoVrwQSqBGw6hmC3xZBH/79A6+Ma9Tbx++NcLxFYVaO8tcdlPPF7/+Azj7sEg=
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query decision definitions (alpha)
+
Search for decision definitions based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
-
-The Decision Definition Search Query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx
index fde29473bec..5678c6c973f 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-instances-alpha.api.mdx
@@ -5,53 +5,386 @@ description: "Search for decision instances based on given criteria."
sidebar_label: "Query decision instances (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWW2T2jYQ/isa9Usy5S1pkqZ8IwfX0pDL9eCSznA3HWHLoMS2XEmGYxj+e3clGwyYt85N+4XL3MWW90W72mdX0i6oYWNNm0Pa5p7QQsZExNqw2OP0sUJ9rj0lEgPjtEn7nClvQgKpiL9NrcmIae4TGBqLKY8J8BmuBKs9xA9xs9mMpeEP8WAiNOGxn0gRGwLPLCYsTCaMBJyZVHEY8AnQAhEbhU7gFYvS2GfEC1MNMjWRqSEyIGbCyUg+gYY+5/ZtmJO+J3ed/oC0brtETrmaCj57fFFnidBVI2Wo654jrMJQVXFtdgaqOV8t8n/4O+Vqjp9ePsRofpAqUIduMEyEumYtfIhphSoOtNp8kP6cNhf2VSju02bAQs0r1JOx4bHBbyxJQuExdG79m0YPL6j2Jjxi9msYfg5gYRbUzBMO3pejb9wzoCJRMuHKCK4th1RWWkbFlGJzIALnR/ocOYHgoV8QpI0S8ZguK1Qqn6vdLxgdAUtDg1q1R5fLSsHcYSYQgsgIE/JV+PyBruzDpO+cp+jyETkTNuZnTVfJqDAniCY+hllWKCxPxIwb+uk1zj8UkTAn0mo7x1ZgNizecerm3JYrxg8cRPJzOJel/rkFb6z9UynRV8K0n2F3rcPMwFPd/Z3Pj3rw3Ru6nTEGgElgzcG6kzVq1ueGGeuzXV776QB3hfI4jTDaOl9avfvWoNOGsetWt2cf7m8+3nz+emOf+redq+51F8YLIZknvW4msY/6OigS5sWnLEwtPK8B5OnGuhYwsD3nNRsJHN9h88HRkD51mwciFsj28Vl8nYkFpbncorbc4OfVtWFXbu1zG5bL3aOkW5LEyiR227nA9qebY0JvWHTi6sdAeYbgL1DOhEv9x7JTmbapYz/RNQOroQxnqHtXyBpdbcBOv/sZkZQ//jVofeh1YKDXHXTuWr2/On/eQs3NqO46vdbAPRaht4bkARDiNHMMQq1ksTl1TR11YWnLELfcr/na5sXNwrQ3VZQk3qWrgTqRsXZ583WjUe7xnZkRV0GITj3EUpCGJJdUszuLZ985nFtyjTQs7G4Vsr0oBk8EQmmDpf4LZESuzyuoIfu3vIdKqnPoOTV1L8e2e7bnc2SelwpbrLDtbILbGF9Z7wNB1QhIw0dqrn/Ynktdv9T1S13/3+s6lDZ7cjzF9Y72MNj+230CFsHNQnNwd5CXEMvx5uwdgb18sDmH+zXyCQ6Y+b0DYcqCdCp87gOftSXfNZCR9OcHtw7AOQp59OPuFmJzdi1y6ygzvcSVMMIwCyHhyGkf3l1fkV/evP358cXEmEQ36/XZbFZTgVflvjBS1aQa1+EVf5HuZY2A5WBDxOZkxAnzfRvQLCTr4kh0Ap4JhEeMzLOSnQyus7PvyL4lg8fe2pIqsRMmLXJ/1yXg19iIYA4Mu6o3b0BGMjXNUcji73QdF8eCsQXbvShiqphxCwqy0p0e33DtySO/DQa3xIkgnvS5vbszeAeXKUIjIkgjEeYDCE14Y0/u7V2jYbMNrvgJlsSEPyVgvquQW+ZAcETruLWGra4Zn2dlpBJjsa13E8VZELedRQ6Nb8vQ2EIMwkEA45ArBS6TnpcqBVE+mwAK87qY687u/C5Yu2DtgrV9WIOPETcTCSWaJlLb0GFmAm/1vPJVV82Euit9FO9VFW6G7PE0VeAcunDQWULELyYgaNlcJHBOXNanuC5TpgQ2Duwy4mcHsTx0QumxcOLU7y4hfihu9La6Cb/C0WLG5m6/nV27r0W/b7xvlEpF0j0SsT/hLHQBWEgKuVhEd6lYR3yK4CUeXjWHFCbMvI9szj0jcDJXrRRXYRUYmT4rHd8dEYy4h+s8XH7/OrArjgntbt306DyxKHFwXN8y27Nto/TktQ7E8vNSo/xo09h7Din9ghvDIprKzwGHKFYb+kZxs1nokrg+zHDVSFkLy/onrknyuG51uBZGY9WgaGy1H4YLt27FxgKOLS2iA2kXLcPb7vIjFvI500bt1S62IUQwRXkyAl5bpwDfM2EmhBXCKWu6YfKCYsZxIwt6Y+ewnKznvpDMS+RVDaHg8JqXpzFITkc1UJf32lb/j0I5qkdMxPVMha5ftT7d37Rb1V73qnPT71RBYs08uXsaTB8RiwvzsBvtsqbkC9tcfLlt/GJdpi9dzRO6mlluMPzJ1KHwiBgj3i7vIsviQ7qbxWkevXgqdLl4SBcLdOm9CpdLHLZzgPHHderGNxA/4cx3MHD5g165Java4y6Sh6m9Z9u+DF1Wco6W5/HEHKR9LJSl28/9ASa6rHcbQRGHUcVm2NeFv036AP8Q0TaMbA614wsKxXicWlxTJxd//gE+Htdo
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query decision instances (alpha)
+
Search for decision instances based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
-
-The decision instance search query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx
index 0f1190cf9d6..dfa6e8eee43 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-decision-requirements-alpha.api.mdx
@@ -5,49 +5,234 @@ description: "Search for decision requirements based on given criteria."
sidebar_label: "Query decision requirements (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWFtv2zYU/isE99ICvrUrhsBvbpIO2Zo0i93uwc4DLdE2W4pUScqOIei/7xxSshVbju1iwB7WNEht8twvn85RTh2bW9of0yseCSu0IoZ/z4ThCVfO0scWjbmNjEgd3NE+HXJmogWZaUPiJg4yZZbHBE7nYskVAVbHjWCdiZqofr+vtOMTNVoIS7iKUy2UI/CZKcJkumBkxpnLDIeDmAAtELGpDAIvWZKpmJFIZhZkWqIzR/SMuAUnU/0EGoac+2/jivSCPFwPR2Rwf0P0kpul4KvHV12WCtt2WkvbjQJhG47ahlu3d9Cu+DpJ/Mv3jJs1Xr2eKIzALDOgDiPhmJC24z2cKNqiGBLgfq/jNe3ntIxQTPszJi1v0UgrB+HCO5amUkQM49v9ajHIObXRgifM30r5aQb5yalbpxwSoKdfeeRARWp0yo0T3HoObby0kooZw9ZABMFP7DlyZoLLuCbIOiPUnBYtqk3Mzf4NFsiMZdKhVhvRomjV3B2XAqGOnHCSbyroLwzlEIx+CJGixSNypmzOzzLX6KRmE1QTn4OVLQrpSZgLR7++RfulSIQ7kdZ6Gwcz98zjvaA+t63YML7nIJKfw1k0xuceorGNT6tBXwPTYYb9XMvSwVPDXbX8Q63j/+Tro1H97R3dBZIR9CmzVswVdPc3vm6R1UIAsrAIQITBL8mUAE+IiEGLgDIyHnUcQkcj9HQwc00W3rGENxfurkFXt3dEAXUFK4f1ACpYEZr1WD296Hkp57jCJsduGjp1V5sr3RLxcR0ASUy5U6SiD4Ga3FwdE1yr06sGLz74MnyOAy/RN9V6EWDHplrZUKpve71QsbtmNz+2QuMSm0URt3aWSVJJ63hA/9cB+1ykc9oxebODHwe7DaIxE8Y6RNgvTGbcnodjkv0o70tIFgJ6DpQd5NgNz649R+z8CWz/K2CDXtaZifjpAasHq+ImOG2U2TycLbKCJKfMwBj8H4IqIsXzbjwKpVWvea53PwSffkAmMxiGwXlyC0NQNRsTBp+h55ZQ9TERqgqs1wnje7xGnEXNCXcLDdGiqba+UZlbwLdupbhdV9wNiilOXgZLziNpZiRw5AGUi363my9AVtHPU4C0orvE0l0y2EpgtfDtj9fB3WqUlTpichEs2A8CXtQrZGff+J05vmJrn/60HMy3oi96F71GqUh6QCJuMMFDL3T7uNmKXTiXNooNxKcILhBnLY8yWNrWQ2QL4ZlCkLkZZJiITRGX+rx0/B6I4CR8+FBhxR9/j3xe8VH5sF2Lrp9Ykkr+fA49CMO9lwBw208b8DpAj124pd52Zm3NCYvUeLMJbcnLBShsOY/bXSXsIL3NhtHb2R/GeQhrfTPAMwyKgD3Sx7Rs0v3s1L2ivc6bvRRjBvH5EekEeP1gouZkJRw8cmrZLrfmDkU7I46dDnpVCGBF9jHckC8leL/pYKWGdsJ8W+ilOUjOph1QVy3Lm/+nUk+7CROqW6qw3cvB7ee7q0H7483l9d3wug0SO+4pPPGxwROmanZ4JDoAMa/8C4LXu/7n29Hs58uJ015OlA3s+JPrphLShXXvk5yXaDumjWhLqzLGfT5g5pjmOUb1s5FFgcfeDDh/3EIsfgMNC87i0A/0G/Y0vQyJa4/QHiSHWRP7a3e+LloVxwCm89S9SPtYe4LcfxqOEJDKtzCJjpHHsBW+oYG/fTqBf9javpg81vnzHAZgNc98g9MgF3/+AZqLvSs=
+api: eJztWE1v2zgQ/SsE95IAsuR2i0WhW5qki+y2aRun3YPjAy2NLLYUqZKUHUPQf18MKdmKLcdJUWAP21wcifPFNzOPHNXUsoWh8ZReQMINV5Jo+F5xDQVIa+gsoCmYRPPSciVpTCfAdJKTTGmSDmmQOTOQEiXJgi9BkkRzC5qz8E7eyTiOpbJwJ29zbgjItFRcWsINYZJMmShzRjJgttIwO4k0ZKBBJhC5lVG7YsIiPSVMpkQqS0CyufAOz1lRyZSRRFTGgjZEVZaojNgcyFzdh3dyAuCepp3oa3JzObklZx+viFqCXnJYzU4iVnIzskoJEyVecMRKPtJg7N6LUacXFulv3yvQa1w6vZOIUFZpmwMiZRkXJnQI3EkaUIQMjH2j0jWNa9oimNI4Y8JAQBMlLUiLa6wsBU8Y4h99NZiEmpokh4K5VSE+ZDSe1tSuS6AxVfOvkFga0FKrErTlYJyG0s5aK8W0ZmsaUG6hMM+xk3EQac+QsZrLBW0CqnQKen8FCyhjlbDo1SS0aYLedqetwVlALbcCNhX2CaGcKG1vPFK0maFmyRbwrHC1KnoxcWlhAZoGNFO6YNa/+v0lxi94we0TZY2L8SyzD3a8B+rD2JqN4hvIlIbnaDaD+HxkC9jiEwz4G1A6rLCfa9Fu8Klwd5Rw02OEv2F9FNU/XtFdornNgTBj+EJCSr7BOiCrnCc5YYk1hBnCSCX59woIT0FannHQjpUsUssgNYWYuaEIr1kBw4W7G9DF+2siWQEdrRz2swRtuG/WY/X06M5bO8cdDm3saqBTd73Zdls8Pe7DgmTSPsUq7sFLk6uLY4Z7dXoxsIu3rgwf8sBj8kO13njaMaWSxpfqy/HYV+xu2MPHmm9cYqokAWOySpDOWugI/acT9nOZzirLxNUOfxzstiagGdfGIsN+YaIC8zweE+xHdR9jMg/oc6jsoMYuPLvxHInzF7H9r4hNg1GVTuDpgPXB6rQJ3jbabB7OFlkxQ0qmDaT/IakiUzzsxqNU2vWa03r1Q/TpLsgkY1xAGpL3SkN3NyZMAym1WvIUUsJlB6zzSeYqXSPPoucCbK5SGtNSGdeozOY0plHneNR3HHnHFG9eGkvOMWmlBY1p7Um5iaOozpWxTVyXStsmWmLpLpnmOFq49sdlv93uKitUwkTuI9gHARf6FbIzb/zJLKzY2qW/bC/mW9Ovx6/Hg1ZR9IBFnGD8Dp3R7XGzNZtbWw6a9cJPMdwgzxpIKs3teoJqHp45MA36rMJEbIq49ees47MXokH7z9uOK/7659blFY/Km+1YdHnPilLAw3voQRoeP0aA237akNcBeezCrfS2M3tjjh+kpptJaCveDkB+ypltZxU/g4w3E8Z4Z36Y1h7W/mSA7xAULjPlMG2bdD87/V3RcfhiL8WYQTw/ElUUlXQXE7kgK25zwnrZbqfmkGKcCWCnxzWVHsBO7J1fIV9a8n4RYqX6dsJ8mziKFtzm1TxMVNENy5vfuVDzqGBcRq0LE52fvf98fXE2end1fnk9uRy9CMehvfcnPjZ4wWQvDsdEByjmxH0lON3df729mv36ePFzPl60DW7h3kalYFxiX7giqFs2ntJBNqZdmeO87zl1SusaUf+sRdPgaxcGjaezLQXjUxPQHFjq+4V+w56n5z6xo1uMB8VF5a52u/fvJug0zpIESvuo7Kx3wnz8MLlFwmq/0hQqRR3NVvgFh61oTLHtXaE5HnTvaiqYXFSu+am3iX//AsBa030=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query decision requirements (alpha)
+
Search for decision requirements based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
-
-The decision requirements search query failed. More details are provided in the response body.
-
-
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx
index c4fda7854ce..5215fcbd148 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-flow-node-instances-alpha.api.mdx
@@ -5,53 +5,318 @@ description: "Search for flow node instances based on given criteria."
sidebar_label: "Query flow node instances (alpha)"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: eJztWUtz2zgS/iso7GGSWopUMpmZDG+KLe96N3E8tpI9yDpAZFPEGAQ4AGhZpeJ/n2qA1JOSpWyOcZXLJtEPoB9fN5pLatnM0HhMr4SaE6lSINfSWCYToJOApmASzUvLlaQxvQemk5xkSpNsRc4bckOmzEBKlCQz/gSSJJpb0JyFD/JBxnEslYUHOcq5ISDTUnFpCTeESTJmoswZyYDZSsPkVaQhAw0ygcit9JoVExbpa8JkSqSyBCSbCq/wghWVTBlJRGUsaENUZYnKiM2BTNVz+CDvAdzTuCV9T+6G9yMyuL0m6gn0E4f55FXESm56VilhosQT9ljJexqM3XvRa/nCIv3HXxXoBS69fpDOPpW2OWiSgmVcmNBZ4EHSgGr4qwJjP6h0QeOle+QaUhpnTBgIaKKkBWlxjZWl4AlD60d/GnTBkpokh4Lhf9u+udpzCDHeXY1CGlAmxOeMxuMltYsSaEzV9E9IcKXUqgRtORinQ2mnv6FiWrMFDSi3ULj1U+VkHES6IchYzeWM1gFVOgW9v4IBl7FKWNRqElrXwYaBxo3ASUAttwJWEfkHGv9eaXvXHLWeIGfJZnDWdrUqNvbEpYUZaBrQTOmCWf/q57e4f8ELbk+k9W4YZHbrxHtG3d5bvWL8AJnScA5n3WmfWzaDtX2CDn0dTIcZ9n0tmgOebG6h5jcqhRZv/guLTotux/koB/IIC5/d3HQAUbjjhV/foRdKrRIw5nxlDeM6rR5hcVTFJWRccpRwvpJ0xXtYjbHMQnfu7Ip1pAFREtBeg4vR9ddhQC4+f7r9OBwNLwMyGt59ur4ZjIaXIYr2Ek+RvDa7o62DtTs7Mv64BJ5u8t+w4uw9SOTB/WuAW2bz0/hLZnO0yyMsDMHk3/e1VYeijBgomWYWUjJdkJ+in1A/lwlPG/Bu9E+VEsDk3gbuczU3ZJ6DKxOHlOTMFchWLtEgnEqrNtWdnTkreTwjDlM33hhidQWdkWdBMmm9g/dl+1X0ZrAL+BvgcrWT9VcON7aB+xBtFzDVvkaYUknjceVtv9+9wcMl0lQJ+j2rBGlFha5Yn1yMTwW9c2uSVZaJ6x2k76423kcZ18ZiLfzKRAXmvIoj2LfyHqs53qDnFJ2DHLvm2d3PC/v81hL0zeXk/ygSncCv7WUn+NcBBZkeXDuGzS9C71FcPVg0Dheq4zh5AqwdB6bToQfTajt0jwJOG5SO490ZINNcm5wYkjEuIA3JJ6WhvR0Qpl0L8MRTQCh2N5UWiMhUpYujaFRqNRVQ/POlK8KA3HrKRi/xWUEY9h1IOPXax3dXF+T3d7/8NnmVW1uaOIrm83mos6QHKbdKh0rPIp0l+It0r0MyykEDKdiCTIGwNHWhzQRZ5xsxJSQ844kvqu7AbjPoMH++F6DwQHOyCodK872iNyBf7q6JCyeeLbic7avevnVMVWXjqWDyka4D46VuYkBMVRRML9pL57aCJheqlzH857edZfvfo9Et8SJIgrGFV0zXMzSK8BAFl7yoChq/6/cDWrBn//Rrv1+jTPT4CSeRBJ5LwaQLrd3jcEmKddyGPlmbacH38YzSfMZ39YZbadwE8aU/kU/HX7rScYCNkwWNcQhaK01UklRaQ0rmORerrrvV3VyUf+Taj1z7kWuHcq0OaAE2VymNaancWKl0nQGNsI3AytdbjQQj319TnGXoJ9DGdbyVFjSmS586dRxFy1wZW8fLUmlbR0/olyemOY73nBtx2adYGzpCJUzkXv2+C3EBr4Tt0XZmfv9iFuZs4UxaNqOutej3/ff97uui0vaARJwi+hP6ANwAhVYsZnf3Hd0RnyK4xn7YQFJpbhf3yObNMwWmQQ+qrf6s0eeku/7KEdGg+eeqDZf//G/kPI6AdrceTQ6fWVH6dFxPdjrb5X53M9w/1Or2V43hOnj3gnmjX91/69vUDe5Vd7p+t+4w8Ta701P2NzvGzYbVBcN4Nbhci2vmlX4oOVmPFv3IsL8aCPZ3xn3jpffZ5iAP39UumzPlHNbk2r7rMQ9AGx8r/fDNfl7fXjt4SlRRVNLVKDkjc25zwjZCqRmLI3AJngB2sfGSSm/GluyjXyFfvUbyJsQ08LnalqYZt3k1DRNVtNPw1d+pUNOoYFxGjQoTXQw+fbm5HPQ+Xl8Mb+6HvTdhP7TP/tqH0FEwubGPpj3u+K7wyn0EeL17+uW6Rv/4MvE9vkw0WWjh2UalYNxdxlwALBuMH9N9jKdtfONc3iP1mC6XaPIvWtQ1vnZ7oPF4sgZ2fKoDmgNLfaLQR0xNeuF92hvhZpBcVO5ivzt9qYOWY5AkUNqjtJONonX7+X6EMNh8fylUijyazfHbDJvTmGK+uxhz6OreLalgcla5rKdeJv78DRuuczk=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query flow node instances (alpha)
+
Search for flow node instances based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
-
-The Flow node instance Search Query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx
index 0f25906416d..a30fe58055e 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-incidents-alpha.api.mdx
@@ -5,62 +5,511 @@ description: "Search for incidents based on given criteria."
sidebar_label: "Query incidents (alpha)"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query incidents (alpha)
+
-
+
Search for incidents based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
Body
sort object[]
Array [
]
page object
filter object
+
-The incident search successful response.
+
-
Schema
page object
items object[]
Array [
]
-
-The incident search query failed. More details are provided in the response body.
-
-
-
-Unauthorized
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Forbidden
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Not found
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-Internal server error
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx
index 4d69bf8894f..16e1b3a41e1 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-process-instances-alpha.api.mdx
@@ -5,53 +5,385 @@ description: "Search for process instances based on given criteria."
sidebar_label: "Query process instances (alpha)"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query process instances (alpha)
+
Search for process instances based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
Body
sort object[]
Array [
]
page object
filter object
variable object
+
-The Process Instance Search successful response.
+
-
Schema
page object
items object[]
Array [
operations object[]
Array [
]
callHierarchy object[]
Array [
]
]
-
-The Process Instance Search Query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx
index 67590b5a46e..7ee15ea88d5 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/query-user-tasks-alpha.api.mdx
@@ -5,54 +5,314 @@ description: "Search for user tasks based on given criteria."
sidebar_label: "Query user tasks (alpha)"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Query user tasks (alpha)
+
-
+
Search for user tasks based on given criteria.
:::note
-This endpoint is an alpha feature and not enabled on Camunda clusters out of the box.
+This endpoint is an [alpha feature](/reference/alpha-features.md) and not enabled on Camunda clusters out of the box.
See the [Camunda 8 REST API overview](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api)
for further details.
:::
-## Request
+
-
Body
sort object[]
Array [
]
page object
filter object
+
-User task filter request.
+
-
variables object[]
Array [
]
-
-The user task search successful response.
-
-
Schema
page object
items object[]
Array [
customHeaders object
]
-
-The user task search query failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx
index 861fdb17257..17393bd40b3 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/report-error-for-job.api.mdx
@@ -5,56 +5,259 @@ description: "Reports a business error (i.e. non-technical) that occurs while pr
sidebar_label: "Report error for job"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SsYnOypLCqpkzq6qYrT2o0djyy3B8cHkIRE2CTBAqBlDYf/vbtYUqI+nPrQ3uSMHRIf+7C77wHgVtyJueXDe36pQ/7Q47G0kVGFUzrnQz6RhTbOMsHC0qpcWsukMdqwI9WXfZbr/MTJKMlVJNJj5hLhmI6i0li2SFQqWWF0BJNUPgcTjzrsf895jxfCiEw6aRC44jm8ABZ0/yGX0K0QuRAugWcj/y6VkTEfOlPK7eVNE8me5JLpGWBLDwBzbJTITPBhxd2yQMsqd3IuDXTNtMmEo6aPp7yuHwhCWverjpc4Zxsx0jA7d9gliiIFTxE8eLS4gmoXTIePMnLopdGFNE5Ji70+bGMdS3zZ9YKiGkE/RXGh0pSFksFqASCGd5cwkbfjsJXJZ1gXRbTBts5AqHndI7grCL2Y70EctYYyGkGYsOBnBQOZiGOFI0XKvPcve1F6PC/TVISppFAB6rMwChu8x2srN51I7Evj5e23a0Zx63ivcutE7pRw0md3ZZwJ5xtSDaxjNgLjLQN2wkP2fANMxCEuMXrR+L/h1ipxW27VXRbedxIJ3HHK4TgUzzm2T4hLQCyaZgudWwrH+8HpDxKhbLswoOiazGDkdDDYT5kmXTGLhRNoINcOgpSqmNx6hbgwDXzLftol8NbS2A2NZLF0QqVtgoRlNDAEaJWz+8mXMft0+uGXh6PEucIOg2CxWPTNLDqRQAAIsjbzAF7xF8cd9xks3yC3l0jxDtvWkmG2kJGaqYg57cPRLJthsvanbVNv1FvtcHa1A5RG8W0ijtjd5IJBUIF2syXuWjvQfs5MlCnaEKEu3TBMRf6EqWrYsAu6jWLLLBNmtW9tAoAhIL4r7b/uYD+/37GNxPh9Or1hZIJ2FKIUMKQBQicylauszPgQ+AVv4oXePg4GNdrEjL/BE6DvSwHue2ptuwPkyDTkmax5x0jT0X+VGW3UXG3jAtA6F7wh8WfyiHR5uk+KU9Ic7bRobq5gA2F0KrXymukyP8jrIK+DvH4or09vltcTaQtQsG1hNEBjbCWDW6SB5aTLPrtauwmHv+kcfc289qBlIVziDvI8yPMgz9fl+WHfhRJ8wSgb5CHdSP13nMFPj+0vOVKcv+getHbQ2kFrr2kNOjPpEh1jPUNbTx0sawx5AEehDSq6XNaBVxxWLqR5bqsipYGw8IpEUwPXqwRM1MMKKzJ18IwZ2fjexm4SV0sa/4GcEPBu8rADSy+tU2ORweVWsDM2Ob+dst/gEF6IpQ8mQm6aPhucDfZaxaGvWBzdXDDykKjX2Q5as6jrvWZp8FsM+5qOlbB5Kbe8xWkUnlDCzcGMSoz/ihINnreO7zQIWujhS0uUy7+mPte4lU3W9aLzF5EVJMROfWdNtM0qzLq9m7fak3Wm/aoaKu36h5OAGRSQQf/dLm0hBjNfQspgrt+CgbpUNurEK0pL6zBOPQ77tIQ7E+I2Fbh22FfqYX8SInvXx1wTIduddw6Wy7APcEFE01b/h6kOg0yoPGggbDAeXd1dfx6dfL0Yn1/fnp+Axb57cT6mqIxM5J11UNWxOYfQKdDJtsPV+tT5n6qUDUWw/BXAzqNyJK0PQtXI+B5rlhaGDle1S1IyMJDUeM+rKhRW3pm0rrEZqGOW0P6wJoFXe6wsPsNOMROp3a6QdZ09mjTFqGO2v/y5d91No8iXnn5piW/wCNPXpdf6AUYmUsQgAVwUdY4J+mSKJtaTd4qhda+dMYoiWbhXxm7cClCrqy3y5tvtFKXXFGIzEpMRC6wDw98h/w7/4EX7sHhV+/aKw8EwL0lkZBd//gEAD+RO
+api: eJztWE1z2zYQ/SsYnJIpLSqpkya8qY7TOs2HR5bbg6sDCK5E2CTAAKBkDYf/vbNYUt9OfWhv0oxGIrDYxe6+B5Kv4V7MHU/u+CeT8mnEM3DSqsoro3nCx1AZ6x0TLK2d0uAcA2uNZS/UAAZMG33mQeZaSVG8ZD4Xnhkpa+vYMlcFsMoaCc4pPWeC3Zt08LfmEa+EFSV4sBi44VqUwBN+b9I/YMUjrjByJXzOI27he60sZDzxtob97U1yYA+wYmbGfA4hAI+4kzmUgicN96sKPSvtYQ6WR3xmbCk8Db095207pRDg/K8mW+Ga/YjSaA/a45SoqkJJgcHje4c7aA6DmfQepMcsranAegUOZ0PZLkwGeHGYBVVVmgyoiktVFCwFVgovc8jYUvmcCd3b4SiDBWhPFe1iO2+VnvM2onBfwDkxPxJx1DsqyYJiVtYsVAaOiSxTaCkKFrJ/PBol4rouCpEWQKVqI74QVuFAyHjj5XqrEsfa+Onm21dGddvKXmnnhfZKeAjdXTtnwoeBwkhRMCdNBT0CDspD/sIAuGDic2uWXf47aa0bt5dWu43Cu61GTiPulUc7JM8ljo8JS7xtaZmrjHZUjtfD8x80Qrl+YzNjN2BuI34+HB6HTNeujGXCC3SgjWcLUaiM0noCuJU1aQHlT4cA3tsauyZLloEXqugbJBwjwxQypjS7G3+8YO/P3/wyfZF7X7kkjpfL5cDO5Blkyhs7MHYe25nEL9q9HLBJDhaxvUKIb6FtQxnmKpBqpiTzJpSj2zbDZh1v2y7faLY5wOz6BKit4vtAHLHb8RVTGWivZis8tQ5ChzUzURfoQ6Sm9klaCP2ArerQcBh0P4qry1LY9bm1G6CNuPPC1+5fT7CfXx/4RmD8PplcM3JBJwpBSrk+ECZRKq3KuuTJ+XAY8VI80tXb4bBFn9jxZ2SiGTxWhdABWvvpKM1KY6HDT0iMOC3/q84Yq+ZqP+6At5te8A7EHygj4uX5MSpOiHN00qK7uVqAZnRX6uk1M7U+0etErxO9fkiv98+m1wNxS+kwtrRGz0NtgcnaWtC+WA3Yl02ajgm7devr1vU3WpaabHWi54meJ3o+Tc83xx4oR5phlS3ikJ5Iw3ucxVeP/Tc5Ylx40D1x7cS1E9ee4lob8RJ8bjLUM4wL0EFZI+HxvUld3NDDZRsHxqFyAXbRqyK1LXjCGyJNm8Rxkxvn26RBRaaNF9iRnfdtnCZy9aAJL8g5BT5sHk6g9NIndSHKWmeCvWPjy5sJ+014WIpVKCaG3HX9bvhueNQrmj7hcXR9xShDgt7WcdC7RV4fdUvGz3EcNB0HsrbKr25wGZUnBWHBjmqs/xoSXbzgHa/JiEfdn489UD79NQm9xqNsvNGLLh9FWRERt/SdDdB2VZjN+Hbf2gDWmQm76qB0mB8uAuuoIMPBq0PYXl8F9klTlrUOR7Ced7LRVr1kUTuPdYp4oSRoFzbfKXC92WeaYX9SRPZqgL0mQPYn71z5vE4H0pSxpGXr37QwaVwKpeMuhIsvRl9uv34YnX2+urj8enN59mowHPhHH2qKzCiF3toHqY7dfQiTujfpfsLN5q7zP6mUHURQ/oqrQiiNoA1FaDoa36Fm6XjEk7V2SUyeRh0b73jTpMLBrS3aFoe/12BXPLmbbkAQ2J4ph/8znsxE4fYVsu1kX4w7MeolOy5/Ht13Nyj0KsCvqPGKR/wBVhvptZ22Ec9BZGDDpmjygkKfTdDFZvGBGNpG/YqRlFD5J2x3ngqQq+sj8vrbzQSp1wmxJZHJiiXqwGJJGzahJIHRYazhhdDzmghGPvHzD4Gf41I=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Report error for job
+
-
+
Reports a business error (i.e. non-technical) that occurs while processing a job.
-## Request
+
-
Path Parameters
Body
required
variables objectnullable
+
-JSON object that will instantiate the variables at the local scope of the error catch event that catches the thrown error.
+
-
-
-An error is thrown for the job.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx
index 57756c511a2..46a49e88c9d 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/reset-internal-clock-alpha.api.mdx
@@ -5,29 +5,32 @@ description: "Resets the Zeebe engine’s internal clock to the current system t
sidebar_label: "Reset internal clock (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztVt1OIzcUfhXLV4sKmeyWbWnuIpZtqba7CEIrFbjwzJzJeJmxp7aHEEWR+hp9vT5Jv2NPIARW2ov2rkhoYvuc7zv/9koGNfdyciWPG1vcypt9WZIvnO6CtkZO5Dl5Cl6EmsTvRDkJMnNt6O8///JCm0DOqEYUrCuCjWJF7xyZIPzSB2pF0C3tQ0vljTZzoUOU05DXRjhSzQFLjK7NrNZe2I6cYmqBRe+p6htRWQfB0DvDAJFi4Ls2xroWBuRUqzsNOVXBJCaplccuGdFpY6hkUiV8R4WudCEGymszmUyMDTSwkyk7C6+YXBlxpZquVqIiBXK6eZU5qgi+FZTFk4PhxI/acg8KpWjVEqzC9/lnKqKnRa3MHPhwtupZGK40pDyUro3cl9DurMFSTlbyzfiQP08zMHtweAGffF8U5D3i0iwBheRs4r4V75Fc78u34/FzsKl5zBo5h4jZIiasFItaNyQ6Zxl/E2lHf/TkwwiWFhaKJjCm6rpGFzFPGRTyhtpvPnsmWElf1NSqF5jFWZIUJQWlG2FTjOBTEsxhA6J0df7+WPxw+Pb7m1d1CJ2fZNlisRi5qjigUgfrRtbNMyz5n+X2RgIhQmCH4KsSYuCEh7AN9RQ0+a3Up2gNZouw7Chlgn/BzmQW1o/K7Ew63XylDw4hglTFBYigyN5puds8U3F5fip0ibDparmJ6RPqqFOpvmEMlds+TPJGmVvOYNCheZF0l8X3bavcUtjqBQIA+YA63XJDcg3MyW3bj61v3zzD5uL7aTY7EwlCFLak2JCB+2UgYidabXTbt3JyOB5jpe7T6rvxeM2YnPGv8MQIuu/gfhoBO+6gOFqLPCe06Jg2sAv9+C9lxjqN4bbDC6LHXMihiN8lj9b8B3cp1LbEaWd9LB0Vaqyy2LZZ7FLsenJ35HjYrmATwiFXqVnWqPFVDdX1ZNVZF9bZHWfiTjmNqZnqj49TU22KBdiqqRPh86TxgVEtbZw5Vm1vSiWOxPnJxUz8qAIt1DIGkSmfQh+Nj8YvorLoFxCnZ6cieZhKbmsMbGC5n1+ETcJfA7xe33AgMbJ0WF6wWgpPTsqRm/Yc94dSGPgiOq+TEHbSj/ebAvn5t1nMsTaVjepDrp8bwllBCpPl49Hr53UFY7k9CttCN85I1NZChxrXzyNe0fQY1o4bB4OUMP+Zl/O1RfshnYhfE6N4PeKkpMrZjMY5kPt8BLqsSGoP37yxedYqbbKBwmfH018uP76bHnw4PT75eHFyAMRRuA/ReS7dVpktO+LVv3vJv4o3396u46vH6+H/J8N//GQYqjvQfcgwLLXhfotlsRomz5WM7qbnBWYPeibNjyu5WuVAunTNes3buN3dEvs3j+OGVwCsSZVoFh5Wt7Tk0sbDowtxLjU9G/DFVwD36MNIPPt0wd31DyERoUY=
+api: eJztVttu3DYQ/ZUBnxJUljZp0qZ6M5ykdZGmhr1pgdp+oKjRijE1VHjxerEQ0N/o7/VLiiG19sZ2gDy0b11godVyOIdnzpmRtiLIlRf1uTgyVl2Jy0K06JXTY9CWRC1O0WPwEHqEPxAbBKSVJvz7z788aAroSBpQvBeCTWEqOocUwG98wAGCHrAAJNkYTSvQIcVpdQWawKE0BxxRXtCy1x7siE4yNGgP0WMXDXTWgcMQHXGCBDHjXRBZN0gDDfbyWlsHsgvoGKSXHhpEglETYcugEvyISndawQx5QXVdkw04oyO1o9UUGFwSnEsz9hI6lCE6vHxSOezQISms0srBvOLLoX0KkloY5AYaBB+bj6gSU9VLWuEFaYIucjA4NCg9+vKCRCEc+tGSRy/qrXi+eMGXzxVY3hJeSw8+KoXed9GYDTgWZ1f3vXqXYirEy8XiYbJDulMNnbMOrEqCtbDutUEYneX8u0o7/BTRh1IUQlkKSIFzynE0WiWdqtHZxuDwzUfPAFvhVY+DfAQZTnIktBikNmBzjaSHHNhgy5Y4P317BD+8ePn95ZM+hNHXVbVer0vXqQNsdbCutG5VuU7xl+OelrDs0eGu+LJtNWNKw2RGdEGj35M+V2s+NoTNiFkJ/iVqkY8lCnG3mcnk1d1V+OA0rUQhOjZgELWITov7zXMIH06PQbdIQXebXU0/g057OhkN55CNjaFujKQrVjDoYB4FvY/i4zBItwHbPQIwFcIHGeIeDcEeWKHbP7+m8O3zB7nZfD8tlyeQU4CyLaaGDNwvMxCTGDTpIQ6ifrFYFGKQN/nuu8Vi4pys+FcwIcCb0UjKI+AeHU0wWIezfxIxTT5IUv+WMtbplb6PW4rpTgsxm/h1ZjTxpxADht62ohaj9ck6MvSiFlVq2yp1qSiER3eNjoftVkRnRC22uVmmuqq2vfVhqrejdWGqrlmJa+m0bEz2Hy/nptqZxVglTZ8BH4rGCyQH3JE5kkOkVsIrOH1ztoQfZcC13KQiMuTnqV8tXi0ezcqhX8h4eHIMmWG23N4Y2KXlfn40bQ7+msTTdMmFVNHpsDnjbbk8DUqH7jBy3W+tMOOl7Hyfg0Qx/3i7M8jPvy+Txpo6m7bPWj88CKuCzueTL8pnD311cpzaQ9lhiJRmJK1grUMPco+YMtEHJlQIoxWSTw5mvfZg3+UV+C0jwrOSRcnO2Y3GlQ59bEplh0rlbbfXxtimGqSmaobw1dHhLx/evz48eHd89Ob92ZuDZ+WiDDchkWfrDpL2zpEe/fcf8k/Sk+/pfeLbu8fD/68M//Erw+zugDehGo3UxP2WbLGdJ8+5SHTz6wUGfqvL8+NcbLeN9PjBmWnivz9FdBtRn1/ejRu+mwrRo2zRpWF1hRu2tlI4hjSXTOQDfPEtgHv0diSe/HrG3fUPIRGhRg==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Reset internal clock (alpha)
+
-
+
Resets the Zeebe engine’s internal clock to the current system time, enabling it to tick in real-time.
This operation is useful for returning the clock to
@@ -37,14 +40,57 @@ normal behavior after it has been pinned to a specific time.
This endpoint is an [alpha feature](/reference/alpha-features.md) and may be subject to change
in future releases.
-## Request
+
-
+
-The clock was successfully reset to the system time.
-
-
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
index f8caf5b59dc..11905fefd10 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/resolve-incident.api.mdx
@@ -5,51 +5,183 @@ description: "Marks the incident as resolved; most likely a call to Update job w
sidebar_label: "Resolve incident"
hide_title: true
hide_table_of_contents: true
-api: eJztV81y2zYQfhUMTsnUFpXUSV31pHGc1m2SemS5Pbg6gORKhA0SLABK1nA409fo6/VJuguQMvXjcQ499KCDRgSwv/i+BRY1d2Jh+eiOXxWJTKFwfHbCU7CJkaWTuuAj/lmYB8tcBky2MkxYZsBqtYT0B5Zr65iSD6DWTLBEKMWcZrdlKhywex2zlcSpGFgBCVgrzJrWUR+ct4oi//z1N1l0RoI9YXOtlF5BymKUzKT1Ngd/FPyEl8KIHBwYirnmBQ4wwi6uX2CNMpKCLoXL8NvAn5U0kPKRMxXsZobyTM+3UwuhUWoD1LdJBrngo5q7dRlcOViAwaW5NrlwYer9GW+aGbmzpS4sWNJ4Ozyjv22X074vTC3HzcVMexs64M0JPxsOD+uWRi9ROWW4u4IMFNqxpVAypXATjeEhhqgqylLJRJBqhEqxgvybe0t26l5W2w7G7DpIshSckIrp+B4SD3cQjNGxLNjd5OMF+/7s3XezV5lzpR1F0Wq1Gph5cgqpdNoMtFlEOKQfyb0eMAzeAKa7JiaIFMXQp1CUUAnGIfDMlpDIuUwIAxdy9cHQ1gf4WxBCWESHjfITRBuoLNKpWPSRqozkuxwYs9vJFfN4yPkaFfZde525qBTZELGu3ChWonggoJx06qDTXS+2ynOifsu3bQdoyDrhKvsi0759u2ebaPHTdHrNggmW6BSwhkyondYRJZHLQuZVzkfILhyJxzB6Pxw2ZJMQ/4pMCgaPJabvqbWbDpIj14hzsOYTkwXGVST/FTLayIXc9YuOnrDgLYk/hIyapvEF9VIxrqTLto4COh3aApvrqjgW2LHAjgX2bIG9O3RjYS60y4Z4CMbglukkqQxeyGyVSeXNU0/Q+abrGqw7Vtqx0o6VdrjScBEb4Eyn1ORi5+2bYux1RzzqLi4b1b07rIl8Z1n5UBAcMMuufa4M7hKvQw01SP06Q4vNqC61cU20JICWwkiBMXg8aTnUWschpbE5z0Ic+1jSAvXoXY4XIseLVLBzNrm8mbIf8YWwEmu/t+Ry2/T58Hx40CqJPmNxfH3FQoaBib3ToTNLZX7QbBD+GsO+17eAJ5l06xtSC9sTgzBgxhXBsWFI689bp3EQwpnw8bHjzc+/Tz30sphrr95SYD8QQgUhDJEPB2/26YbBUtUkOkddf3Qi5XyDI3qJJaqyjhI64Xi+Ar5byG/7purEPoUV9lvwyN4MCJTAnO7EXKDlKh6guygJapv/WOk4yoUsotaFjS7Gn2+/fBiffrq6uPxyc3mKFgfu0fnkidG5KHpxTMKzaNOV7SZbP90U/6uXaou+g0cX4RmDj9Km3ba6Ldi7zbvVovxo+xHbq1nkWqi7O17XsbBwa1TT0DRelmaN87OnMvV1nUpL33hEzIWyu8/e/o69mrQP5Nfs5cfwwZTaSVGs/WGhKhrh5wOmsf0yb2YonoFIkf0UZZAYJwmUrqf77G1PRbc5+q5/vaFy+RfLSsf3
+api: eJztV8tu4zYU/RXirmZQxXKmmWmqroxMpk3n0SCPdpF6QVHXFhOK1JBUHEEQ0N/o7/VLikvKju04yCy66MILQ5Z4eR8855C8HXg+d5DdwJkWskDtYZpAgU5YWXtpNGTwmds7x3yJTA42jDtm0Rl1j8VPrDLOMyXvULWMM8GVYt6w67rgHtmtydlCKsVyZBoFOsdtS+MWHfrg9dbk//z1N3n0VqJL2MwoZRZYsLxlvpQu+Bz9qSGBmlteoUdLOXegeYWQwTKvj9hCApKSrrkvIQGLXxtpsYDM2wa3K/uILTOzzdJialTaCBJwosSKQ9aBb+sYyuMcLSQwM7biPn56dwR9P6VwrjbaoaMZb8ZH9NgMebUeSzpWcXuHxfqCjqBP4Gg83j23tuZeFliwgntODrTx7J4rWVC6wmhPGGYd8LpWUnCamtbW5Aqr724d+enWqtoMMGHn0ZIV6LlUzOS3KALc0TDHgknNbi4+nLAfj97+MH1Vel+7LE0Xi8XIzsQBFtIbOzJ2ntqZoB/ZvR6xqxItsoq3xAReFJJickUF1Wi9RMdcjULOpCAMfKw1JENLH+EfQIhpER1Wkx8hWkHlvJV6vo5UYyVsc2DCri/OWMBDzlqp509Dhzkz3ijywXPT+CxXXN8RUF56tTPodhTXVBVRf+DbZoA+Aee5b9yLTPv+zRPfRItfrq7OWXTBhCmQzYyN2hkCURGV1LJqKsiOxuMEKv4Q396Nxz35JMS/oRLN8KFWXAdqbZcjNauMxYE/oTCpneda/FfIGCvncjvuCPpHLGAg8ftYUd/3QVAviXEhfbmxFdDuMAhsZhq9F9heYHuBPSuwt7tOrIlmtMqWeIjWGsuMEI21WLBFKVVwT3eCZWw6rtH5vdL2StsrbbfS+gQq9KUp6JJrXKAO3XUzSJcHl0u7tTOsT8PNsgmpJODQ3i+vz41VkEEXNdRnadqVxvk+62pjfZ/eE0D33Eqeq0hLGo5aW3JIGcFVGfN4iiUN0B19WeMJrxpdcHbMLk4vr9jP3OOCt2FtKeSm6+Px8XinVzJ9xuPk/IzFCiMT13aHpVuS+U630fhbHIe7vkPRWOnbS5oWlydHbtFOGoJjxZAhXvBO79EIkuHPhyVvfv3jKkAv9cyE6QMFniZCqKB1MfPx6PAp3c7PgmqEqapGh61Tz+MFh68VJlTjPBWUgJICtQvEHnqqpdmnOMJ+jxHZ4YhAicxZ7phz6csmHwlTpSJOWz1zZfK04lKnQwiXnkw+X395Pzn4dHZy+uXy9OBwNB75Bx+KJ0ZXXK/lcRHbotWtbLvY7vGk+F91qgP6Hh98WisuNfExLFs3CPZm1bc6SCDbbGLXNDtNBt3dQNfl3OG1VX1Pn782aFvIbqaPMg26LqSj/wVkM67cdtu7vmKvLoYG+TV7uRneWdLwkes2bBaqoTdI4A7brc68n/YJlMgLtCHLaDERAmu/NvfZ055Et9r6zn+7JLn8C8tKx/c=
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Resolve incident
+
Marks the incident as resolved; most likely a call to Update job will be necessary to reset the job’s retries, followed by this call.
-## Request
+
-
Path Parameters
+
-The incident is marked as resolved.
+
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The incident with the incidentKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
Removes the assignee of a task with the given key.
-## Request
-
-
Path Parameters
-
-The user task was unassigned successfully.
-
-
-
-The user task with the given key cannot be unassigned. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx
index b728aca1d9d..95732b30400 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-a-job.api.mdx
@@ -5,66 +5,263 @@ description: "Update a job with the given key."
sidebar_label: "Update a job"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update a job
+
-
+
Update a job with the given key.
-## Request
+
-
Path Parameters
Body
required
changeset objectrequired
+
-JSON object with changed job attribute values.
+
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `retries` - The new amount of retries for the job; must be a positive number.
-- `timeout` - The duration of the new timeout in ms, starting from the current moment.
-
-Providing any of those attributes with a null value or omitting it preserves the persisted attribute’s value.
-
-The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead.
-
-
-
-The job was updated successfully.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the jobKey is not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The job with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx
index 990dcf390b8..f75526da29b 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-element-instance-variables.api.mdx
@@ -5,52 +5,179 @@ description: "Updates all the variables of a particular scope (for example, proc
sidebar_label: "Update element instance variables"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update element instance variables
+
Updates all the variables of a particular scope (for example, process instance, flow element instance) with the given variable data.
Specify the element instance in the `elementInstanceKey` parameter.
-## Request
+
-
Path Parameters
Body
required
variables objectrequired
+
-JSON object representing the variables to set in the element’s scope.
+ { \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n",
+ type: "boolean",
+ default: false,
+ },
+ operationReference: {
+ description:
+ "A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n",
+ type: "integer",
+ format: "int64",
+ minimum: 1,
+ },
+ },
+ required: ["variables"],
+ title: "SetVariableRequest",
+ },
+ },
+ },
+ }}
+>
-
{ \"foo\" : 2 }\n2 => { \"bar\" : 1 }\n\nAn update request with elementInstanceKey as '2', variables { \"foo\" : 5 }, and local set\nto true leaves scope '1' unchanged and adjusts scope '2' to { \"bar\" : 1, \"foo\" 5 }.\n\nBy default, with local set to false, scope '1' will be { \"foo\": 5 }\nand scope '2' will be { \"bar\" : 1 }.\n","type":"boolean","default":false}}>= 1`"} schema={{"description":"A reference key chosen by the user that will be part of all records resulting from this operation. Must be > 0 if provided.\n","type":"integer","format":"int64","minimum":1}}>
-
-The variables were updated.
-
-
-
-The provided data is not valid.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
index bf926037c75..faedffd420a 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx
@@ -5,74 +5,294 @@ description: "Update a user task with the given key."
sidebar_label: "Update user task"
hide_title: true
hide_table_of_contents: true
-api: eJztWV9v2zYQ/yoEX9Zusax4TtfqzUvTNl3bBYmzAUsChJZom61EaiRlxzD83XdHSpZkO43XdW9OkVQSef/vd0edltSyiaHRDb02XBPLzBd6d0QTbmItciuUpBG9zhNmOWGkqPaQubBTYqecTMSMS/KFLwJ6RHOmWcYt18hxSSXcADlSDYHoN76APQI55sxO4VrzvwuheUIjqwu+KXYI7IExUWMnqRZuFSmcSijTxFOeMRotqV3kKE5Iyydcw9JY6YxZ/+hFn65Wd14kN/ZXlSyQptZgzFIDKsQKyKXFNZbnqYgZatP9bFCl5bY0NfrMY4u2a5VzbQU3uBpPmZxwwx2jtlnvr37/RDyZd6Pfm3jbmLVajApw94yloGlwK28lemKs0lTNhZzUWwyJmSQjiEzyuTAWWJRhEYZwmeQK7D6CxUSgaJY2KG/lXKQp0oqJVOCACOX8SO6BYyLQt2+1KnJzTzpEox1ktCBg4kwkTgVJeJbbBUmFsW06zKP9yZKCvwaip/Zfgd5y4ii8H67zf0mWa6G0sAskyYQUWZGR8Ihk7MFdHodwk/AxK1JLTkJ0xkWDX5mEyvCm9523GbmXRZre+3gRpYnKhLVIJywoBerpGToccxgyxAgXqTWbH4ynXAeaGQMx4RyDK5V9Mr6AC4ePgaPzWVStBsjS7TaFxnxRWmPecQAt/M0E0CgJuaUbYn3qAilk9WaWo6lslPIKsXVyXTTy36+1EVFGugEd46LTxCnmT8cKqBq7agFwIK4QlQUBLQ3I5ZPxD7b0XqHMOo3+g06eTafIv59mbSQ1dGNas8VOLRBOKHtN6oql2V8dZIDKCMszs+2O1dfU9IXiG/WcOOL/VdEK+U+2iJ97O5Wu6FtKws6yitAoRCpXOWh0AjdlTaERFpVNfUAhKyze0tN1j4CHLPYiN7vFgMQAfZURv6GsMnbKsHn4Cs7imAN4QQYZa9hZN0oHc4MlEpRDP7r1Vv0gQs6Ub3IBOR8TrDje7zw5wgrmpFSVETrvLfW995a2KsQaOI/be12eA/xx4tI3YujKuAdUzJU0vlT0wv62I4atI8CcmfIMkBBTOAeMQTCcQoBZPwyfpN86vzTKbck4IB+hM4LtlonUEKb52jPgNUddqU1GcJ7w/njkAAGU4JTsp+2DxGa8L/zOUm51UgB7/caRl35z+eaUvOqf/HL3bGptbqJudz6fB3ocdziUZKUDpSdduMVf3Pc8IOACsCFjC99T1seCulATk/NYjEWMkXYNq1QGo7y7I7SrvF/9SjkttNhC2YBcX54T8Ku0YrzAPN0STRsYo2ykChuNUia/0Dq/toVuSjFFljG9BnJbADAyltnCfGudeDccXhDPAvpswl1XdVgrBbWKRj9sVooXYbhCnhjxPSyBaviQg/kutTbNgeTI6rx1hgkJesn4e0UGyuFEbMoFQQ2sl0n82lvkMd7fA9bbsESkIy7HqpBJcADYAWAHgD0KsFffADDwX9nN5lqBAuhheAso4E1BWuiohy54AOkBpN8NpCe7DqdgC3pZYx5yrXGIEDsEwiv/VKSOvTvkl7LLKdYBawesHbD2GNZgMeN2qhI/cI6nbkJtp3DbxY7YwY5ousvGfHqFA2Wc15UT7EKDc+jSQ2cFGb+cKmNX0TJX2q66M4zLjGmBL7wujLjsIValTgpv16l7vCuEuIBj8sq0U5bBMZeRl+Ty7GpI3kIrnjP/Vosi26xfhi/D3SML2PoIx8HFOfEW+gRsFIWKLaJ7J1u/eR/GbtRuOJQwYRdXSObdM+JwftCDAoOwToxSnuOO934TPPEXb6p0ef/n0EUcC9plPcY/e2BZ7uHYnrpXA0faC3v9znHYCXvDXi8Kj6PecfBzv/cX3RwDfm3n5ljupkroux2zsOZiPX86CRuDnsbISsixcv6oBkNbnsU0w9GxIwyD423YgPcR/bHKgNa1AIBOOaCu+cUpzpE11gXoExzObCi3/E5TbfvgV8gfXiI5DjDLPBSqyj8BzsUoAHHd2JOt/x+latTNmJDdUoTpng4+Xn96Peh8OD89+3R11gGOgX2wLpo5ICBjsqFH+blpfWjdNHZZd7z9P02VuWb5g+1CIRMSHe9sWpZF4YbWRQEIouZnKwijR/YNXS5HzPBrna5W+BjSUENob+7qQuAqRyIMXtcflh414dll+Q3qOdnvi9dOU6rZq1y4kpQWeAeXwG7jE9zqDrZPOUsAY6ip33Hq9ekMkU/NYesb2OqoohjEMc/tI3tbhw8sButKfDEYnr5DcJdf4DJoXPBYszl+EIS/Eb2Ff3CjnLNc3XDPlxQa0KRgE9zvGePPPx1v+dY=
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update user task
+
Update a user task with the given key.
-## Request
+
-
Path Parameters
Body
changeset objectnullable
+
-JSON object with changed task attribute values.
+
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `candidateGroups` - reset by providing an empty list
-- `candidateUsers` - reset by providing an empty list
-- `dueDate` - reset by providing an empty String
-- `followUpDate` - reset by providing an empty String
-- `priority` - minimum 0, maximum 100, default 50
-
-Providing any of those attributes with a `null` value or omitting it preserves
-the persisted attribute's value.
-
-The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
-This ensures correct event emission for assignee changes.
-
-
-
-The user task was updated successfully.
-
-
-
-The user task with the given key cannot be updated. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-An internal error occurred while processing the request.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx
index d4dd5a82250..b0357085bc7 100644
--- a/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/upload-document-alpha.api.mdx
@@ -5,45 +5,207 @@ description: "Upload a document to the Camunda 8 cluster."
sidebar_label: "Upload document (alpha)"
hide_title: true
hide_table_of_contents: true
-api: eJztWE1z2zYQ/SsYnJKpRClpmqa6qXbSuhOnHltuD5YPILkUkZAAA4CWVY3+e3cBUqJEOXHTHDqZZsYxSWC/3z5gveZOLCyf3PBTndQlKGf57YCnYBMjKye14hN+XRVapEywtNnDnGYuB3Yiylqlgr1iSVFbByaaq7maTCZKO5irWS4tA5VWWqIMPgvFRFHlgmUgXG0gYmeOJbUxqLNYMa3wP1tXlTbOb5ZqWEKpzWpn2TptYDBXy1wmOelEU6wEgUuZNqwyOq0T8pvVFiLvzFzxAa+EESWgixTsmit8wci8trMU1yUF+rEGs8IXAx9raSDlk0wUFg7zMcPQz06ZznwS9l2j1NQhX3uLTkeo2CY5lIJP1tytquCAkWrBN5vB1qdW5Gu5tXUIs535dGGS7mQK6QBLqmBJQktZFCwGtgAFRjjAzVcVJDJboXtUCriX1tFzu9mArQusqvKrxmDy5YFlURgQ6SrI2sjX4eEM3IYAwbqfdbqiHbt4nakx3EQrh3ppqUTbEmvqRlj1cpgK53X2tOv4PSSO6m90BcZJsLSayQL6Pgw4KRNogMdSCcz5ZsARNKJVf6hUpKmk5IvioqM+OLtvsHF95hX07fYL2Qgw2nlY0oj8ohDeecQ8Rh1hq1VDkl4F3FeYXjt1n0wFBg9DJ9HSMcW0ighAtOMOtsxB7WOgseHtWflX110kBViA6drCTy9fHLVDsj1oI/jilfPaUb2Tjqq6ZbLztnK0uMPSTaj+LSVAJTqlcAlRnTrvVYuLqipkIsiZ0XuLHm3oH6m0lVY2FPj5+Bn9OpKg1tmlsE0jQooslyRgbVYXxYqIoQPtnrl/gOvW2ONw1iaKpZI+l4h5pLCITYulWFlmwZPHnCeB5uecPAVVl5TE5qPPY0ujj4LiQ8zpIdIhvy9UFv3ftN9M0x4uXkIGeFdIgIcOfDEef6bpmqM4E5g+PNPO6YRO0YQs8IKBz+1RSF6Rl21PsxjPoHBiPdCaKBkXUH7Xb9F9d6bsIuxs7LIARIZsEDbGwfrN5ZsT9tOLH368fZI7V9nJaLRcLiOTJUNAwGJfarMY4Sv90L6nEcNQMYZSrOjo3uGa7WDMrD/FZdJe2Rq3PURDfJ9mFPcA+LfVr43s1X7Kri/PGOZVueYG0TPtZTKBxzgxbKxrN4kLoT7wXdk/1yJTZNGyxGO6hdi+Ac9LeM20n0Xv98+PovfX2eyCBRXY2Sn4C6ajO21jiIJA0pQlMSJiEd/EfXh7OR4Tm/mKPyISul9VGL6H1mE4CI5yh1sfmFToF/XB16mMNnIhD+3u92cD4tMQUXMCIs3mGpmaV9p66AiX49so3c4SWAMwd+2tuzaYDL4OrbJBhK9zFNxM1nTj34zuqA53wkiBpnzZaDm0VAuVQieiyIO5fsloocuauwHl8vXVjP2CvIdHm08hmdxX/Wr8anxUK219QOP04oyFCAPgOiTQqqVuPs6OfvNjFPvLsQWclKRbXZFYSE8MyGFmWlPWt0Bo7Hnt9B424Zfw8KaFx29/znyFpcq0F28q3XeEqoIlDJ6Po2d9VKGz1ByJLlHWMyQiayldjhNGf0hEeaRRQJolu83Y0257G1bYH8EiexZRUQJyWmJcoOY6jtDcqLmGbH/HhY5HpZBq1Jiwo5Pp+fW70+nw7dnJ63dXr4eoMXL3zgdPwC2F6vjRDLvbE+SJn1ifHsa83p0L38R83IDHwb0bIRPh3Llpsr5u2vqGp90/EYTWvOHrdSwsXJtis6HPYValZsdLJfXxA9NqN39fPk8f9foDrPZG+ztR1LSL05D9r736b43Tn0jA3t8Rdjm43VEslolu7zlqRYKgmgXJk5CDob/47mSPzdyU0iA0xYGmcp3t/bHptnNiXPx+NSNOakb9Es9X/EqKvd7B7pGc3Gz+BhUIecs=
+api: eJztWEtz2zYQ/isYnJIpRcppmqa8qXbSqpOkHltuD7YPELESkYAAAywtsxr9984CpN5O3DSHTlvPeEQJi29f3y6wXHIUc8/za35mi6YCg57fJlyCL5yqUVnDc35VayskE0x2MgwtwxLYqagaIwV7yQrdeASX3pgbk+e5sQg3ZlIqz8DI2iqDTHkmDLsWui4Fm4HAxsHtk8zBDByYArKwMuhWfFrJpykbIysa58Cgbpk1umW+qWvrMIApM6igsq7dWObROkhuzKJURUk6jUVWgTDIZtax2lnZFOQXazykwdgbwxNeCycqQHAUjCU3ogKe84A2ljzhigLxsQHX8oQ7+NgoB5LnM6E97MdrUgIbnzE7C0HaNY1C18R47iyiTXnCfVFCJXi+5NjW0QCnzJyvVsnapn7L1zJrbVDKxrMQrtrZOyVBJkwwAwvatFBasymwORhwAkGm7LKGQs1aZeaUCrhXHum5F3bgG41MmbDqnHVM7WkW2oGQbdzr05CHhyNwGx0Ejz9a2ZLExl90DSS8sAbBIC1VjUZVC4fZzLpqIAUGzAN0O30PBVL+na3BoQJPqzOl4dCGhBOYQJ7zqTLCtXyV8ApQ9PD7oEJKRcEX+nwLPhq7q7AzfRIADvUeJrLbwEhyP6Up2UUuvAuMeQwccauHoZ0BAu5r5cCP8JOhkAJhgKqCo8C0yoSRjCTYogSzy4FOR9Dn1R/b5iqDMAe3rUsZfPH8qB7ae0BtZdi0xYC+SjgqpKyuO93bPnO0uOHSdcz+LQXAFFaSu8SorTzvZIuLutaqEGRM9t5bw1f0R5C+tsbHBD8bntDHkQD1xi6E7woRJPNNUYD3s0brlhrDFrUP1P0FXvfKHsezPlBMKvq5UkagdSkb6YVoPfMQmscNL+IxcMPJUjBNRUHsfgxx7Nvoo6j4UOcMFNlqfl8Ilv5ftP+aot1fvOjvEjxW4PPh8DNF1x3FM6E0nWlv6YSWgEJpz4SD9VFIVpGVfU2zqZVtPLEeKM3a2amG6pvDEt01Z8TOo2Snl0UiMuFZFJxG7dcXr0/ZD8+/+/72SYlY+zzLFotF6mbFAKSiurRunrlZQf8k9zRlkxIcsEq0dHRveM02NGY+nOKq6K90ndmBotG/T3cUfID86+w3Th3kfsSuLsZMSTDY3SAOVIc9M9FowhBT22A+1cJ84Ju0f65ERsw3VSVc21NsV0HoSwIb/1n2fvvsKHt/nkzOWYRghZUQLphId95OETlRKaMq6ojPh8OEV+I+fnsxHFI3Cxl/hCd0v6q1MIFa++4ow6oNb4NjyngUVAdfJzPWqbna17tbnx2Jz6JH3QlYAZZW8pzX1gfqCCx5zjO5njUS7sHd9bfuxmme82UslVWeZcvSelzlS7rxr7I7ysOdcEpMdWQfLceS6qmibSF0GdUdpowWtrvmZoC5eHU5YT8JhIVoQwhJ5S70y+HL4VFUEn0AcXQ+ZtHDSLitJtDDUjUf745B+DHA4XLsoWicwvaStsXwTEE4cKOGor4mQqcvoNP3KMST7uF1T49ffp+EDCszs2F7l+lDQygr4Hy0fJieHLLqfByKo7BV1ZjQIc2cLRSWTBwZInnCtSrA+MDfbuzpxd7EFfZb1MhOUkpKZE7fGOcKy2aaFrbKumvI+nOq7TSrhDJZp8Jnp6O3V+/ORoM349NX7y5fDU7SYYr3GJwn4lbCbNnRDcPrE+RJGFuf7vu83JwL/4n5uSMXwj1mtRbKEN1DVpZd2V9zuf2KIZbuNV8up8LDldOrFf0cZ1lqBlJ5qvMHptnt+H75vH3U6g/Q7oz+d0I3JMVpCP/bVv2zxu1PBGDnPcMmBrebFszza7rdlyAkuJCzuPM0xmAQLsabvcdmcgpp3DQqCqhxS/xwrLrdOlHOf72cUM/qXgVUVtIeAg64yeaRjFyt/gRT45EZ
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Upload document (alpha)
+
-
+
Upload a document to the Camunda 8 cluster.
:::note
-This endpoint is an alpha feature. It currently only supports an in-memory document store,
+This endpoint is an [alpha feature](/reference/alpha-features.md). It currently only supports an in-memory document store,
which is not meant for production use.
:::
-## Request
+
-
Query Parameters
Body
required
metadata object
+
-The document was uploaded successfully.
+
-
Schema
metadata object
-
-The document upload failed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx
index e1e428e5b1e..b40f567d7d6 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx
@@ -5,55 +5,191 @@ description: "Get decision instance by id"
sidebar_label: "Get decision instance by id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU
+api: eJzlV9tu20YQ/RVintqUNuXELQK+qREdsBFsw5KTAIYQrJYja2Nyl9ldyhEI/nsxy4tulOL2qUWeRO5cdubMRYclWPZoIHyAEXJhhJKxNJZJjjDzQeWomaXDBEKYr+MEfMiZZhla1GRWgmQZQgiCREJCCDmzS/AhQcO1yMkaQogTTy28pLnDE+0lPmj8VgiNCYRWF+iD4UvMGIQl2HVOno3VQj5CVc1I2eRKGjQkfz0Y0M/uRZOCczQGfOBKWpSWVFiep4K7TIKvhvTKw3vU/CtySwlqytuK+haR9MTiwxOut86FtPiIGnxYKJ0xWx/9cUmaxjKLhz58QFlkhPzVMB5HI/Ah+jgc3w+n7vn++sP1zadr9zS5jd7FV3E0glnlA65YWrhcRr2Od1SumEgL3a+Va0VQjXAhpCDlDy/OqTFte+Xlhm0HxP2otuJNTD9QvHbdd0LhI2oj6oqfDO/N622rqVM9XrJR9C6exDfXX6bDP8cR+DCOp9HdcPwl+nx7F01ItFe5TUWphhpNkdpTtcMklnlhzZYO05qtacosZuZfN648hhjd2yepfLDCpnS0vyNciE6ji/qmsP+NsH3QRYpH2seJZILfX9QXJxCo061VUDJpey884QCqisSXfbssliuWisSjFYnGHt9puVbzFLPf/uluo9VUmBfORobGsMd+qLt93ie0vcO0DUqktdIdEm8OkbhSei6SBOUuBq+CV///dC8P072rC45UeqMKzdGTynoLVcjk5+iC3/vmYXgbe1sJe+gMfgI8iEUgL7Swa8e55sg06jPHQR5mlV8CV+pJoHub7XOv92gPmZc3X3uOs2Vol4ro3SM6KIi9hRCsLoLW5qy1MUEpkgooGL1q+V+hUwihrMGtwiAol8rYKixzpS0pr5gWbJ7W2JKsLuyCuX9ASBVnqTvej3u6RI8EtPqJPdoletQC9e3njocovefu7eDtoNcTqR7xsmmMjZ+ltXmvn1q515OjqG2hJqRXJ90WZ/OXmAuiTO2/GtzcRnfDaXQ26aiDY9KNXeXvFLzz0oToAqL3Wgla7au2V//6NHV9JeRCOfOmv24cu0fvtpinglMqhwkrjzk+7TFuxQo9JhOPqyxPkbZTQwO7pqInr3W7UNrLlBRWUWc7S6tVQZ2wVMrWhIpGl3FXw7qRKCkTBsHz8/M5Z1khE3bOVUYgpIKjNA7HBrdxc+LvGSeKm85aKPceaFygRskxaByZwPGHliDCxfngfFB3lbEZk1sXnR6hHcy68lj8boM8ZUKSTxdg2YzXA6wuYMM2NwMGPoQioU+velAeoCznzOC9TquKjr8VqN3Qb+bKTWEiDD0nEC5YavAgpm5Fwi93zQfXr97xj7LeFNrmlWvoaBdA8ylEvK0iartElqB2QdWCIeeY2y2Tg68xGptuDb2PpuADKwinDsu91nbee8Mpy1pjqp5QVlUXnaV3CrCq/gYA8BqK
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision instance by id
+
Get decision instance by id
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
evaluatedInputs object[]
Array [
]
evaluatedOutputs object[]
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx
index f36cdf8c8a6..8be57fd78bc 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx
@@ -5,55 +5,156 @@ description: "Get process instance by key"
sidebar_label: "Get process instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4=
+api: eJzlVt9P20gQ/leseWp7BoeWO1V+Q2CqHBxEkLYPKDqt15Nki73r7o7DRZb/99Os7RASg3KPp74ktne++fnNztRAYuEgfoCJNRKdG2tHQkuEWQimRCtIGT3OIIZ0fYXrv08ghFJYUSChZWANWhQIMTziGkJQGmIoBS0hhAydtKpkDRDDFa4DMw/K1k6gekMhWPxZKYsZxGQrDMHJJRYC4hpoXbJqpQkXaCGEubGFoPbTH6fQNDOGu9Joh44RH0cj/ntp+r6SbBNCkEYTamIRUZa5kj6+6IdjuXrfskl/oCSO2XI2SLVWONZD3PM4Nv0NrVOtjTdBnz7ug6ZisYVzZJVesFRaFrqvWjYoUQqLmq4Od9bLX+bm6cZk2FPhcLwjYelCEA56gzp79czR4AmDqoLpeXY+HX9LIITz278m18k0ueDns5vz5Dq5gFnDzJMq62rbaUmNyVHorZRe4FxpxTU/PCpCLTS9meKd5vG6QSorq1zYdzun771SRTlr2m27pmmaEE6HWDzWK5GrLOB2QUevs7m0Js2x+O2/spqLULkDOVqgc2IxXM1Nbw8dth/2DrZyklhr7CYTn/YzcWlsqrIM9cscfIg+/P/DPd0P964tOHLpnamsxEAbCuam0tmvwYLfh/rhbDIOtgIO0AN+gXzwfYmysorWfgCnKCzaIz+UHmZNWIM05lGhf5vtzuEvSHtDOEjXQTu/C6Sl4XG/QJ8KnuQxRKuTqMMc9RgX1Y+4boCdsat+GahsDjHUbXKbOIrqpXHUxHVpLLHwSlgl0rzNLZ+1hZ2LKudM5kaK3H/e9Xu6xIAPeN3gRYKWGDAFWuvH/jI2dkfd59Hn0aAmFn1FyzMxnvUsicpBPa3woCa/nPSFume5Nui+OJtii1Jd+eR3m9TtJLk7myZH98n9/fj2pt+qOhxP/q2Cb7R0LnqH/PDzQtBLX/Zc/fP71PNK6bnx8I5ft37bw2BSpbmSHMp+wCYQfpMKhCS1wkDoLJCmKHPk22mXVfwU9GrnxgaF0YoMM9sjyZqKmbA0htppz60rpK9hSyQOysVR9PT0dCxFUelMHEtTcBJyJVE7n8cub9fdl3AHnBnpNmhl/HtkcY4WtcSoU+Qi1rrqFzU4OR4dj1pWOSqE3jL0dgu9yNmmPIT/UFTmQvl1xDtYd+31AKsT2Kwozw0GIcSschZ2jfIAdZ0Kh19t3jT8+WeF1jf9c1/5LsyU4+cM4rnIHe75tLki4d1dt3y/D15f0AdD6Mmr176r84rfIGx3Y//b8Fq2RJGh9V61J2dSYklbmL1FnPtmcw99SaYQgqg4Uc+L3Utue+2D/tR1KzE1j6ibZuMe8Ts72DT/Ag1odYQ=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process instance by key
+
Get process instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx
index 85681d95add..c5d1725af06 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx
@@ -5,55 +5,146 @@ description: "Get process definition by key"
sidebar_label: "Get process definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX
+api: eJzlVt9v3DYM/lcEPq2dc76k2VD4LcCuRZZhCXI37CE4FLJM36mxJVeSLzMM/+8FJdv3y826x6Evd5ZEfiQ/kqJacHxjIXmCB6MFWvsb5lJJJ7WCdQS6QsNpcZtBAmlzh82nK4ig4oaX6NCQaguKlwgJPGMDEUgFCVTcbSGCDK0wsvJwCdxhw3TOqmCJZXtTERj8UkuDGSTO1BiBFVssOSQtuKYicKkcbtBABLk2JXdh69dr6Lo1qdtKK4uWNK7mc/o7Nr6sBVmFCIRWDpUjEV5VhRQ+wvizJbn23LJOP6NwFLUhPpwMVija73Ev6ukZRa0zUm3oYIfGymD1VZh3VwfSK76ZBEurUvVJpGxNSDhUXLnJQzqVrqCt80LoOjq/nmL1Vu14ITNG6UPrvs1uZXRaYPnzf2XZOu5q+50MlWgt30xzLZV1XInpw7DxGisLY7QZmXh3zsQHbVKZZaiOOXgbv/3/h3t9Hu5jSDhS6q2ujUCmtGO5rlX2Y1TBL1P9cPNwyw4CZugVfgA+uggsitpI1/iRkCI3aC78Jfm07qIWhNbPEv1qfToZPqKbGAssbViYKSW6raYRtEFPBk2XBOLdZdxrXey1bNw+Y9MBOWR2w4iqTQEJtIHgLonjdqut65K20saR8I4bydMi8EtnIbk5rwtis9CCF3771PfVFhkd0C1P481tkVEZBOszIpJsHMO9n7+fTyKR6DdQ9sWxx9k6V03iBOFJJD8wh2QtSS4EPSRoTDiv5J2nv5/v9w+Lx5vV4mK5WC5v7/8cZn2vRyPoIOkjSu+id4jWQQgG6Q9Dvf7+98rXllS59up9jd37NwiyhzotpKBQzgPWjPvpzrhwcoeMq4wJXVYF0g01VNZQ7PTFBthcG1ZqJZ2m6vaazuiaKmGrtaOKD+3Lhc9hKCQKyiZx/PLyMhO8rFXGZ0KXREIhBSrreex5+6PfiU6UMy3sqC21X8cGczSoBMY9kI2PngpwOZvP5qGqrCu5OjD0b210xNqYIIf/uLgquFSE6l1s+xZ7gt1luHxOmwwiSAh0HfXN8gRtm3KLf5mi62j7S43GN/++t3wnZtLSdwZJzguLZ16NVyX89Ng/Ct+w156Ok2EMJawa39tFTSuIwqvN/3brLoIt8gyN9yuc3AiBlTvQOXsiUveM99HHxQoi4DWRNRJ6UuEefdKftg0SK/2MqutG9xytycGu+wqWo/3N
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition by key
+
Get process definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx
index 16b32c5492b..ff33da69e90 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx
@@ -5,52 +5,169 @@ description: "Get incident by key"
sidebar_label: "Get incident by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ==
+api: eJzlVttu20YQ/RVintqUsZxLi4BvqrR2GcukIFFOUMMgVuTI2pjcZXaXTgWC/17MkqIvUprksciLRM7O9cwM9zRg+a2B4BpCmYkcpYUbH1SFmluhZJhDAOvdBe7SN+BDxTUv0aImiwYkLxECuMMd+CAkBFBxuwUfcjSZFhV5gAAucOepjSf2AXzQ+LkWGnMIrK7RB5NtseQQNGB3FbkU0uItavBho3TJbSf64y207Q2Zm0pJg4YsXp+e0t/TkMs6y9AY8CFT0lLQoAFeVYXIXF2jT4b0msPIav0JM8qx0oSCFV0UqvF70nN2FHqKGyEFxbr4UdNQGstlht9v2KkMqsZqIW/BB5R1Sb1dRcs5m4RnIZuCD6voIoo/ROBDGKeX4/k8jM5TtljEC/DhffxnGsXpgiWLkC3BB/aRTVZJGEfpLFwmLGKLp+eTOJqG7nzvgn1MFuNJkl6NZys2SCfj2YxNUzZjlyxKBvEq+mscTd0JSVJ2xaIEfLhky+X4nKXL8G+Wso8TxqYu+d7NlE3C5eOgDwIKO36S0Fm8uEyjOEnP4lU0hZvWhxKN4bdHQGt9yDS6IUlEeVzBWG7/E+/xJAmvGFURni/GiUt8wZbx7Mo9zlk0DaNzl8gntf6BPqPk0tJSHmRFp8IWJBo2uW1J/PbYgoTynhci92gT0divL0ql1brA8rcfXRjCqDbfrOvNa/hGN0S/DUcPjw/+YzCY1koPSLw5ROJM6bXIc5RPMXgxevH/L/ftYbmLruFIrTeq1hl6Ullvo2qZ/xxT8PuxfRjPQ+9RwR46g58AD/qcYVZrYXfuTl8j16hfuvvu+qb1G8iUuhPo3m6eX+3naId73VvvvI4KlGi3ipjDLToIiBQEMLp/NdrrmlFzh7sWKLi+3/OJWhcQQNOB2QajUbNVxrZBUyltSfmea8HXRYclnXWN3PC6IOQKlfHCiZ/nmWzRowNiLMRF7BY9ankX/cRdvko/c/fu9N3pUU+k+hUvD4Pw4GdrbXXUT6d81JPjOfvGLEmvK3rfjKG5vBIXDvSejMVzRjfOyyVb0nW4J2a9Xes/afDgpU/RJUTvnRLstc/2s/n+Q+LmSMiNcub9PMWOMKI3r9eFyKiUw4KVxx0p83hmxT16XOZepsqqQPoa9dzH2w82PXl7txulvVJJYRVNsrO0WtU0CVulbHf50qryzPWwGyQqygSj0ZcvX04yXtYy5yeZKgmEQmQojcOxx23WS/xnxrnKzGAtlHsfadygRpnhqHdkRuSVBrkr9tXJ6clpN1XGllw+CnR8ZZ5gNbTF4j92VBVcSPLlEmv6dbqG+1euuf1CgQ8Bubrx+8W4hqZZc4MrXbQtiT/XqN1SP+yR27pcGHrOIdjwwuBBLsMnEH5Z9Lz9V++Q0x9NeT+kcue2t6jpDfyOTrvflkjQFnmO2mXTnYyzDCv7yOaAu9N+DN+Zc0aUkdcEzADesxl23o/m0zSdRqLuULbtkJ6ld0qwbf8FBbFpuw==
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get incident by key
+
-
+
Get incident by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx
index 6563ac201ed..d6ff71053c9 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx
@@ -5,55 +5,184 @@ description: "Get flow node instance by key"
sidebar_label: "Get flow node instance by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g=
+api: eJzlV1tv2zYU/isCn7ZOjdM2HQq9KTbTanFkT5KTFYFh0NJxzEYmVZJKZgj678OhLrFjp5fHoS+2yHPhuXyH+lQRw+408W7JRS4fhcwgENowkQKZu0QWoJjhUgQZ8chyewnbxRlxScEU24ABhZYVEWwDxCP3sCUu4YJ4pGBmTVySgU4VL9AD8cglbB25clbtQQ7vTnKJgq8lV5ARz6gSXKLTNWwY8SpitgX65sLAHSjikpVUG2aarT/PSF3P0VwXUmjQaPH29BT/9s+OyzQFrYlLUikMCIMqrChyntoEB1806lWHJ8vlF0gNJq2wHIY3p2CyPxKetcOju7pe/qzhCFZccAzyx021YcqMmIEdfW0UF3coBZG9KMPuhAiD7Jvi0Lb8iAIXKc9AmB+PtVF57gqjLDcIzFkYT+kwuAjoiLhkGk2GNI6JS+LZ+eJpRa9pmCz29+LEj5KFlRCXBGFCoys6CvyELoZ+Mvx0XJR8iiY3veh8MgtHfvS536DhqH+OaXQdDOki8eNL4pKIDmlw3S9nMY265ys/nPnjbtX+0X+G41mMFh/9hN74n20oh3tTP/LHYzre2WrSPfdjOtrZjenfMxoO6eJiPLnBU2fjJFgEYZz4uHs+GaHW0B+PF/4wCa6DBNfnszgIaRwvotm4Dz4eRsE06VeYdZdWeBlObkIyb3B2DEdPzbPHUDx0cjUd08T2EIsdhD4u5juQ2fGzlDIHJiw8QDBhjsIRpdzkuHXRwba7U+oaxWfH7oJAPLCcZw5eOqDNy3dCoeQyh80fP3s3YFVK/V34v3uL+W1Aa3b30jC12RwTHp+b3aJQpaTqK/HusBIXUi15loHYr8Grwav/f7pnh+lGTcMBW69lqVJwhDTOSpYi+zVQ8P7YPPjTwNlJ2AFr8AvUAy8wSEvFzdbymCUwBeq1fbXfzmu3IqmU9xzsav6cznwEY7mMs0dmnOXWaYjQBsxaIm+6A1sMpEQeGTy8GXQM6HVnpAfVPWxrgvGoh45WlSonHqma+tbeYFCtpTa1VxVSGVR+YIqzZd6UF2VNb1eszLGYuUxZbrefh56swUEBEjekZGYNDqKgOf3Ekg+pnrn7cPrh9KgnVH3ByxM2nvysjSmO+mmUj3qyLK/rVYx6TdJdf/p+s4Jf2uq3nHQypZGf0NcxjeNgEnb8tLWr3b2e917aEG1A9nVklUinfdHB9a+bxEKLi5W05i3EJpY3gzMtlzlPMZXDhKXDLCV1WGr4AzhMZE4qN0UOeEG13K+HFT45nduVVM5GCm4kgttaGiVLRMJaStO8gXF6WWp72AAJk9LeYPD4+HiSsk0pMnaSyg0WIecpCG3r2NZt3O64z4wzmeremku7HihYgQKRwqB1pAfoFYHcJPvm5PTktEGVNhsmdg763hTtVa1vkIF/zaDIGbcUwYZYtRN2Sx7ekIao7s8YcYmHPuduOyu3pKqWTMNM5XWN219LUHb0n0bLDmLGNT5nxFuxXMNBUP1FSX6L2g+Z351vfO0cTaIDsNjayc5LXBG3+dCwvzWSpTWwDJQNq5H4aQqF2bE5+KrB2ekvo48UiSsrsVRPdGsf39b70XiqqtFI5D2Iuu7DM7jGAOv6P9J4yV4=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get flow node instance by key
+
Get flow node instance by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx
index c269bbffaeb..88dffa13855 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx
@@ -5,52 +5,147 @@ description: "Get decision requirements by key"
sidebar_label: "Get decision requirements by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA=
+api: eJzlVlFvGzcM/isCn9bu6nPadCjuLcDcIsvQBLGHPQTGIOtoW82ddJV4zoyD/ntB6ezY8aXNHoe+2CeJ/Eh+JEV1QHLlobiD31Fpr625xa+tdlijIQ/zDGyDTpK25rKEAhbbK9z+8x4yaKSTNRI61u7AyBqhgHvcQgbaQAGNpDVkUKJXTjeMAAVc4VbYpSh7Y8IdWsugX5ZQkGsxA6/WWEsoOqBtw/jaEK7QQQZL62pJaeu3cwhhzuq+scajZ4234zH/HduftkqhZ1PKGkJDLCKbptIqBpl/8SzXnVq2iy+oiAN3TAnpZEWXBzKenDYrCFnk4SVeMz+nvF8OgyaOBw426LxOfn/X4ru3LO3Q29Yp/PwcHKGRhgad4FNNFW8NFkwILHI+RP2l2chKlzHl6On5FDTOLiqsf/2vqfAkqfUvJKFG7+VqOH5tPEmjniEnbnyPmIlz1u2ZeHfKxEfrFros0Rxz8Dp//f8P9/w03NuUcOTUp8oTxpJY2taUP0cVvB/qh4ubS3EQsMCo8BPwETLwqFqnaRtHxwKlQ/cmXpl385B1oKy91xhX86cT5BPS8PgQi61I46dGWlueViuMfPAgKiDfnOWlK/PuHrcB2Ae32U2v1lVQQJc4DUWed2vrKRRdYx2x8EY6LRdVopTPUj6Xsq2YwMoqWcXtp+7O1ij4gO9unny0RsGZT9ZHzB3bOIb7MP4wHkRi0WdQHuvhEWdN1AziJOFBpDhId/mZslwKepeTfY5lo68i3f3ov76Z3F7MJm+mk+n08vrz7hnQ64XsKM97lN7F6BCvkxDspD/uSvSPv2exnLRZ2qjel9V1fJ6guGkXlVYcymnAVsg49YVUpDcopCmFsnVTIV9KjbPxcFff/CV2sEvrRG2NJssFHTXJ2ZYrYW0tcZGnjpUq5jAVEgflizx/eHgYKVm3ppQjZWsmodIKjY889rz92e9kT5RLq/xeW9u4zh0u0aFRmPdAPj96AMDZaDwap6ryVEtzYOgFnXNE3D5HhP9S3lRSGwaOXnZ9V93B5oz1HN/kBYPMs74/7qDrFtLjX64Kgbe/tuhiiz+2U2y+Unv+LqFYysrjiRf7CxF+6d8a5Svxg4fkoOe7wjXb2NFVyyvoH2vxN8xDBmuUJbroWjq5UAobOtA5eTByz+xvnU+TGWQgW+Znz+GTuo7og/50XZKY2Xs0IezdI16zgyF8A729BJY=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision requirements by key
+
-
+
Get decision requirements by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx
index 2af5df108f0..6dfe598cd29 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx
@@ -5,55 +5,150 @@ description: "Get decision definition by key"
sidebar_label: "Get decision definition by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ==
+api: eJzlVt1v2zYQ/1eIe9o6xXLarCj0FqBukWVogtjbHgJjoKmzzUYiVfLkzBD0vw9HSv6Ilax5HPpii+R9/vg73jVAcuUhu4ePqLTX1nzEpTaatDUwT8BW6CQvrnLIYLG9xu3f7yGBSjpZIqFj3QaMLBEyeMAtJKANZFBJWkMCOXrldBXMZXCNW2GXIu9ciXzvKwGH32rtMIeMXI0JeLXGUkLWAG0rtq4N4QodJLC0rpQUt95fQNvOWd1X1nj0rPF2POa/Y+/TWin0HhJQ1hAaYhFZVYVWIcX0q2e55tSzXXxFRZy2Y0BIRy86P5Dx5LRZQZsEFL4nakYnAnE1bCiiOnCwQed1jPVFL+/eHnq5iwCXaMg/43FI9PrV6Rxqf3kuhyHhP1+VF6GRhgYz4VNNBW8N8LptWeBiiCNXZiMLnQsmI3p6niuVs4sCy19eyxlPkmr/nRmW6L1cDeOnjSdp1PBh3HgJlolz1u2QeHeKxCfrFjrP0Rxj8CZ98/9P9+I03bt44chX723tFApjSSxtbfIfgwW/DtXD5e2VOEhYYFD4AfBoE/CoaqdpGzrcAqVDdxbe9vt5mzSgrH3QGFbzp43uM9JQlxOLrYg9skRaW26pKwxocLfMIN2cp73a2V7Np80DblvgkNym77m1KyCDJkLcZmnarK2nNmsq64iFN9JpuSgiwnwWr3cp64LxLKySRdh+Gv1sjYIPuP9wv6Y1CiZC9D5iKNnHsbkP4w/jQUss+oyVPT32dtZE1aCdKDxoKQwA/XVNWS4m3V/R7splpa8D/t3AcnM7ubucTc6mk+n06uZLP7x0em1ydO07K12IISBeRyHopT/1jP3tr1lglzZLG9Q7lt2EoQrFbb0otOJUThO2QoZpRUhFeoNCmlwoW1YF8htVORsOe7rzl+jNLq0TpTWaLPM7aJKzNTNhbS0x52MBSxXuMBKJk/JZmj4+Po6ULGuTy5GyJYNQaIXGBxw73H7vdpInyrlVfqetbVinDpfo0ChMO0M+PRpi4Hw0Ho0jqzyV0hw4+s9COoJtd0OE/1BaFVIbNhtibLoiu4fNOezHj8MygwQytjpPunK5h6ZZSI9/uKJteftbjS48APvqCrWYa8/fOWRLWXg8CWv3XMJP3byT/yxenIYHE+lZbLahvIuaV9BNnOG3nbcJrFHm6EJg8eRSKazoQOdk6uUC2r1JnyczSEDWDNcO0ickD9YH42maKDGzD2jadhce8ZoDbNt/AUyJST8=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get decision definition by key
+
Get decision definition by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx
index 11ffbbedf5d..fbfe1a9ecc1 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx
@@ -5,52 +5,147 @@ description: "Get variable by key"
sidebar_label: "Get variable by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA=
+api: eJzlVk1z2zYQ/SuYPbUpI8qJm8nw5oOSUd2pPZbaHDw6gOBKQkwCDLCUq+Hwv3cWIGnLYtrk2MlFIrAf2H27i4cWSO48ZPfwl3Ra5iXCJgFbo5OkrVkWkEF+vMYjJFBLJyskdKzfgpEVQgYPQaYNZFBL2kMCBXrldM32kME1HoXdisPgPgGHXxrtsICMXIMJeLXHSkLWAh1rdqkN4Q4dJLC1rpIUt95dQtdt2NzX1nj0bPFmPue/0yNXjVLoPSSgrCE0xCqyrkutQlbpZ8967fnJNv+MijhXxxiQjqdwjt8SXrDjo5fGkzQKr7/Z0Ctbf4d6BH9U9eS02bHgIMtmWkKuMUoS4z5Kc2tLlCaI0UhDy2LClqWaSt4au6TrePtyCv6lOchSF4LrjJ6+Xoba2bzE6pfvLYcnSY3/T6TevuG8KvRe7qYh0X2ZpvEKG/8GxsI560Yk3p4j8cG6XBcFmlMMXqWv/v/pXp6nexcLjlx6bxunUBhLYmsbU/wYXfDr1Dxc3S7Fs4QFBoMfAA++1lA1TtMxMEaO0qF7HW7T+02XtKCsfdAYVpuXxPERaWQNkR9FJJoKaW+ZlXYYIGDKySA9XKSDrk/bBzx2wIe7w8BWjSshgzaC2WVp2u6tpy5ra+uIlUdzzo5lsZBb2ZSMXGmVLMP2yzjXexQs4CuZmY72KLjk8fRZYAXrXrh7P38/n/TEql/x8tQIT372RPWkn6g86Smw6FCYFevFpIdijMWVtY7M31P9ze3i7mq9eL1arFbLmz8G2u/tuuSkwKOXPsQQUOCcoASD9oehN3/7tA59pM3WBvO+n27CYwTFbZOXWnEq5wlbIQPlC6lIH1BIUwhlq7pEvo16UhZDY/OXGNxurROVNZosd3KwJGcb7oS9tcTdHUdVqlDD2EiclM/S9PHxcaZk1ZhCzpStGIRSKzQ+4Njj9nu/k7wwLqzyo7W2YZ063KJDozDtHfk08Do6H5O9mM1n89hVnippnh00PTInWI1lIfyb0rqUOrB/CKztx+keDhcnE5FAxq42ST8Y99C2ufT4pyu7jre/NOjCUD9ZhakrtOfvArKtLD2exTJegfDTXf8q/FmcvxgnQx6a1BxhfPYAJPGxFn67TZfAHmWBLkQTJVdKYU3PbM5ehjwf4z3zcbGGBGTDwDy9m057OHifjKdto8baPqDpujE84jUH2HX/AJki7kY=
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get variable by key
+
-
+
Get variable by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx
index eb7cc632ca5..b756e60d7bd 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx
@@ -5,57 +5,142 @@ description: "Delete process instance and all dependant data by key"
sidebar_label: "Delete process instance and all dependant data by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E=
+api: eJzlVktv4zYQ/ivEnNqtYjm7abHQLeh6AXcXTRC76CHwgabGFjcSqSVHTg1B/70YUlL8Sl+3Yk8SyXl+/GaGLZDcesge4d5Zhd7PjSdpFMIqAVujk6StmeeQQY4lEkICtXSyQkLHei0YWSFk8IR7SEAbyKCWVEACOXrldM0GIINPuBd2I+roRujBTwIOvzbaYQ4ZuQYT8KrASkLWAu1rNq0N4RYdJLCxrpIUt366ga5bsbqvrfHoWePtdMqfY9eLRrFPSEBZQ2iIRWRdl1qF9NIvnuXac892/QUVcc6OwSAdvVTovdzigaAnp80WuqSHKf9n4SdAmkoW+rmQZosLktR46Do+urmUy9zsZKlzwaChp9dzqp1dl1j98G9z8zGEvwv/3VtO9q+AGG/40mHcODs4AGTmnHUjEu/Okfho3VrnOZpjDN6kb/7/6d6cp/sQLxz56r1tnEJhLImNbUz+bbDgx0v1cHs/FwcJCwwK3wAeXQIeVeM07UMbXqN06K64DWePqy5pQVn7pDGsVqfd+EPoUmfdWEiTC1mWIscaTS4NiVySFOu9iP29QirsyTSgAjJId9dpb+1qsObT9gn3HXCkbjfMi8aVkEEbke+yNG0L66nL2to6YuGddFquywg8n8Vb38imZJhLq2QZtk+TWhYo+IAnEs8aKlAwP6L3CSPMPo7NvZ++n160xKKvWHlhzYudgqi+aCcKX7QU5tdwiwuWi0kPNzcyQdb6U8C/H7Z397OH2+XsajFbLOZ3vw6Dt9frkiM2jFb6EENAvI5CMEh/HIj8y+/LQDptNjao9+S7C+8BFPfNutSKUzlP2AoZhq2QivQuEkrZqg5D8Yxv/CcGsxvrRGWNJsu0D5rkbMNMKKwlLoVY11KFO4xE4qR8lqbPz88TJavG5HKibMUglFqh8QHHHrfP/U5yopxb5UdtbcM6dbhBh0Zh2hvyKVtlIsdkryfTyTSyylMlzYGj/1pfR2iOF0f4B6V1KbVhbyH0ti+8R9hdx251XHqQQMYmV0lfQo/Qtmvp8TdXdh1vf23QhV7xUnGhPnPt+T+HbCNLj2cxjZ0VvnvoX27fi9dfdxdTGGht9qHey4ZXkIRHZHxKdqsugQJlji5EFU9ulcKaDnTOXnFcUWOT+jD7PFvOIAHZMFYjnifEDw4uhtS2UWJpn9B03Rgh8Zpj7Lo/ASPU3Wc=
sidebar_class_name: "delete api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Delete process instance and all dependant data by key
-
+
Delete process instance and all dependant data by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx
index 9b0793cadfe..da460cb759c 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx
@@ -5,57 +5,173 @@ description: "Get flow node statistic by process instance id"
sidebar_label: "Get flow node statistic by process instance id"
hide_title: true
hide_table_of_contents: true
-api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6
+api: eJzlV0tv20YQ/iuLObUpLcpJWgS8+WAHborYsFz0YOiwWo7EjcldZncoVSD434NZPkyZNAr7VsQXax/z+uab2WENJHcekge4dVah99fGkzQKYR2BLdFJ0tZcp5DADmlFkrQnrTxEUEonCyR0LF6DkQVCAo94hAi0gQRKSRlEkKJXTpesBxL4gkdht6JsrQndm4vA4fdKO0whIVdhBF5lWEhIaqBjyaq1Idyhgwi21hWS2q0/PkLTrFncl9Z49Czxfrnkf6emV5Vimwtxh1Q544UfwhFb6wRlKHZ6j2biXSR2zlYlpmJzFNvcHoSxKTIIyhpCQ2xMlmWuVcAr/ubZYj2NQTonA0CEhR/t2803VMSoOkaddBuHVKT3mo6cgOGuJ6fNboLsfYZCpwwuBzJ4GUI7ZFplYd+hr3LyQjoUcrdzuJOEKTRRawtn8Z4aIksyF6YqNujYZCs8AOYnbsxkLQLFd3NM32i0F3+tWW2UTtGQf6PdQX6gzX+EaYsyR3p7nL386wJtIiBNOVu7yu3hq01xVMAN/0Xwca5Srs1e5joVXJLo6WWel85ucix+e5HvL/CaK6+ah38cxYf3DF+B3ssdTisgpLLrH3OH7cbkYITLpXPWQY/EhykSV9ZtdJqiOcXgXfzu/x/ux2m4d23CkVPvbeUUCmNJbG1l0p+DBb/P1cPF7bUYBSwwCPwEeDQReFSV03QMj/wGpUN3xo988rBuohqUtY8aw2r9vJd9Rhq9Q8Nry4/o8xdWaOZXgZTZbtYIEwZlkEC8P4+7+2dDA4zrRzw2sR9PJB7dvh9HKpdDAnULfZPEcZ1ZT01Sl9ZRAxHspdNyk7fI81mb9q2scsY5t0rmYXuuQ/MBDzx9G2aCtNYXDDHbOFX3aflpOauJr76g5Yk2T3oyonJWT3t5VlMYj/o0rvheG3SfuqfhpNRfwvjWzXI3t5d3F/eXZ6vL1er65ms/13VyTXRCh0FL52JwiNftJehvX/VM/vOf+8A6bbY2iHfsuwlTJ4rbapNrxaFMA7ZChlmunzukSUev5HNy8S/Rq+Unu7BGk2XeB0lytmImZNZSO1lxYUsVctgSiYPySRwfDoeFkkVlUrlQtmAQcq3Q+IBjh9tf3U70TDi1yg/S2oZ17HCLDo3CuFPkY9bKRG6DPV8sF8uWVZ4KaUaGXl1gJzAOGSP8l+Iyl9qwmeBz3RXfA+zP2z51Wn4QQdKO+qMKXEddIT1AXW+kx79d3jS8/b1CF1rGU92FKk21598pJFuZe5w4ODRY+OWu+zz4Vbz8CTEbT09ucwxVn1e8gih8qbTfK826iSBDmaILXrUnF0phSSOZyYDPdTW0rM+X9xCBrBi1Adln3A/aZ/2p6/bGvX1E0zSDe8RrdrBpfgCU8bjw
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
- Get flow node statistic by process instance id
-
+
Get flow node statistic by process instance id
-## Request
-
-
Path Parameters
-
-Success. Returns statistics for the given process instance, grouped by flow nodes
-
-
Schema
Array [
]
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx
index 9ea6e3d454d..cabe55b339c 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-
Operate Public API
+
To access active and completed process instances in Operate for monitoring and troubleshooting
-
- Authentication
-
+
@@ -69,9 +77,7 @@ To access active and completed process instances in Operate for monitoring and t
>
+
-
+
Get decision requirements as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx
index a00d32b6d33..97eec2e6283 100644
--- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx
@@ -5,59 +5,131 @@ description: "Get process definition as XML by key"
sidebar_label: "Get process definition as XML by key"
hide_title: true
hide_table_of_contents: true
-api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg==
+api: eJzlVt1v2zYQ/1eIe1o7xnLadCj0lmFukbVbgtjDCgR+oKmzzUYiVZJyYgj834cjJTm2tY/XoU8SP+53d7/7YgtebBzkD3BnjUTnfsG10soro2HJwdRoBS1uCsjhuSp/3n/CPXCohRUVerQk24IWFUIOj/FMacihFn4LHAp00qo64uXwCffMrFmdVLHioIuDxW+NslhA7m2DHJzcYiUgb8HvawJX2uMGLXBYG1sJn7Z+uoIQliTuaqMdOpJ4M53S51j5vJGkFThIoz1qH7Hx2WfPVUn/Zxqdt0pvIIQQOFyNYd7onShVwch4dP4YW9R1qWSkL6utWZVY/fjVkdyILrP6ipIAakuke5U8cV74xv0rC2/fQOBQoXNigyMeUFCcF1qOH6aNc785eOVL2ppZa+zAxNtzJj4Yu1JFgfqYg9fZ6/+/u1fn7t6ngCOF3pnGSmTaeLY2jS6+jyx4N1YP13c37IXDDKPAd8BH4OBQNlb5fWyIKxQW7QU1xPxhGXgL0phHhXG1PO2LH9GPNEUmHPvy22e22rPUWCv0W0ONeIORE2qxOWS7y6wTvjgIu6x9xH2IvY1ss7u+Vze2hBzaxHXIs6zdGudD3tbG+gAcdsIqsSoT1XSW4rwWTUnElkaKMm6furHYIqMDmgbU5/0WGWVE0j4hTknHMdz76fvpKBJd/RuUQ54ccLbe16M46fIoUpwcfdzmdC853cdqiL2oVZp73aC7vZvdXy9mF/PZfH5z+3s/9Dq5wI/iP6B0JkaDaJ0uQX/7Q5+6v/65iGmm9NpE8S7dbuM0RnbXrEolyZVzhw0TccwxIb3aIRO6YNJUdYnUrPok6/Oe/lgPuzaWVUYrbyjRo6S3pqFM2BrjKflTJQsZY5gSiZxyeZY9PT1NpKgaXYiJNBWRUCqJ2kUeO94+dzv8RLgw0g3SysR1ZnGNFrXErANyGaFSIidnLyfTyTRllfOV0C8U/ceKOiJviFN8FNSlUJrAo6VtV20PsLtM7ei03oBDnkCp5Ja8q5wHaNuVcPiHLUOg7W8N2tgUDoUWy7JQjv4LyNeidHhm29BC4Yf77qn0iv3Tg2rUmT6f9T4WetnQCnh8uaX3W1gGDlsUBdpoVzq5lhJr/0JmeDhRCQ2N6eNsARxEQ1QNdJ6keUQdtaNt042FeUQdwmCWpzUZFsJfTW+pvA==
sidebar_class_name: "get api-method"
info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get process definition as XML by key
+
Get process definition as XML by key
-## Request
-
-
Path Parameters
-
-Success
-
-
Schema
-
-string
-
-
-
-Invalid request
-
-
Schema
-
-Forbidden
-
-
Schema
-
-Requested resource not found
-
-
Schema
-
-API application error
-
-
Schema
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
index 14546a99a99..1c871d48400 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/assign-task.api.mdx
@@ -5,55 +5,290 @@ description: "Assign a task with `taskId` to `assignee` or the active user. Retu
sidebar_label: "Assign a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a task
+
Assign a task with `taskId` to `assignee` or the active user. Returns the task.
-## Request
+
-
Path Parameters
Body
+
-When using REST API with JWT authentication token following request body parameters may be used.
+
-
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.
-
-
Schema
-
-An error is returned when user doesn't have the permission to assign another user to this task.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned when task was already assigned, except the case when JWT authentication token used and `allowOverrideAssignment = true`.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "An error is returned when user doesn't have the permission to assign another user to this task.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
index 1f4e3b31ea8..cd8e577c555 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/complete-task.api.mdx
@@ -5,55 +5,297 @@ description: "Complete a task with `taskId` and optional `variables`. Returns th
sidebar_label: "Complete a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a task
+
Complete a task with `taskId` and optional `variables`. Returns the task.
-## Request
+
-
Path Parameters
Body
variables object[]
+
-Variables to update or add to task during the task completion
+
-
Array [
]
-
-On success returned.
-
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.
-
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before. An error is returned if the task is not assigned to the current user.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "403": {
+ description:
+ "User has no permission to access the task (Self-managed only).",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
index 53e956d2823..3a76e41c125 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-form.api.mdx
@@ -7,38 +7,141 @@ hide_title: true
hide_table_of_contents: true
api: eJzdV1FvGzcM/iuEXppgFzvtgqHwW7YkndeuLWJnAxYEiHyifWpk6SLxnBrG/feB0p3ti53W6+OeDJ8okvr08SO1EiRnQQxuxZXzc3GXCYUh97ok7awYiHdIQAXC1Pk5KCSpTYDJEu75w1Ddg7QK7kvvcgzhAqfaat75Hpf34PGx0h4VPFbol1BKL+c9GBcI9wv0QTt7v70EOoCLcaWJbnWAKqACZ82SEwCFpXFLVDGbAEd6CjgvaZmBJvBIXuMCQ8y30LMCA0ET6LgnMuFK9JL9D5UYiBlSPHImYnQk9IzDSlg5RzEQ6YAiE5pxKCUV4jk4fJThBbjpGiIO0x5bDMhXmImQFziXYrAStCzZcyCv7UzUdbYOtg/ANnSEaCf2NU7Ro80RyMXwjQtQax8/mkyD2bfj89kbww4A8Jc0+sU766Y0lSbsy0lbwhl6kcVLkJQ+/XIm6vqO94fS2YCBd7w5PeWfbm6fLIQqj2h4pMpbVBw4d5bQEtvLsjQ6j2Tofwm8abWbhpt8wZyYIJ6pQzqF1GoXvn3oVFY/VghaoSU91ehbnHA+QaUaSOBJU6EtOLu+wp6os/2M+G7cDit2GQFHHvmSFfAdLKRBS5zVPVdCbyck1/dUo1HHMSXSZPCws0fTbmHUL5Nvn4eITXNjcXPLyn00eZmaMX1WElsZA9rGhHIZYnLSdu8ig6dCG0xqUnoMaCnJSYfFr8LaPV8cFegh5Gil1y4y/DlrM0FopaXhgcxJ1iwtMgSXa0moIk+6cOpwgQYJt71OnDMo7Y7boVXMdwzwVGDMeOdYjJJKDsF5sI7AWfgHcYKs2jpswIyFy21A4VRWhrLvIdtjgWkJFFvNdVPFoq556ez0bLeOzy2g985zyLaQOX+7aUlrVA5pSEwDRzB1lf2WIJTeTQzOf/qvwhBIUhUOIOg5EycuARVyh2y/j8efITmD3Kl1HSUsWvnrwZXzgF/lvDSYwdnpKej1JUt49atUcI2PFQZ6lbay0VnX6KMjuGI41iYMX3CQusc2kX9+w5ybYwhydoAKnENaSCcsvVtoFWNOvMYpbBl3jxfNXZ5X3rNqM81tIGnzA2JeJrI09nBzM7yIPcg491CVcIS9WS9S1bgZNCcJx11uRh+RlPG0VLhmWIiDAhViIPqL1/3YzfqrRLpaZCKgX7QTROWNGIhV4k096PdXhQtUD1al88TGC+m1nJhEG15L3I+1JAbCuFya+HmfOvACi3iL2/nnIaToqXE4/8zd29O3p3s9sekLXjac3/gpiMq9fpLxXk+xYwfMK69pGcHJnXvQKAa3d5mYoPToTx64td3ebZuO2GXCp92wvn1Z6jQedTP5LdqdTCTPjLKigvtuKuk4WvJEIhdSG0aepW2EZnryp7RyhgpyUwUeAZn2zRw0Ph+9/zAcjU9Gl6PR8NPHdiBqEqq7+a/Ta2CKoERJjkaitb5qa+qPv8eRedpOXdzeMHAsw4PRgeD6cjRmNHcxby00F5RHqZYn5E6qkMDf0jIeA7wstTJL0CwUc+74kypoy5NBI5Ncl8bZWdAKeeT2QDI8BK6UJP+NVso8MivRm48ZBv3+09NTL5fzyirZy92cYTE6R5b2wXqk/NB8yZ5tVi4P693axf993w4x/cZR6HcGALF4nYgeaC7tVhR+rMjYF55Dttpo/f/qSdNQjvAr9UsjtWVgIsSrRq1uGa2k5EFkYtA8a+6yRnduxWrFJXPjTV3z5zTuc6UqHbhUNoP6i5AeXTe4HMOB75K9icc6eukttJCm4i2CXyqHp/bj75RvpLh5IW2yutvI+o+jt/9FuTeTVgxtB5w2w+aa67s6EwVKhT4mlRbP8xxL2tq28xzi06yb37tLFqp/Ab96n4Y=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a form
+
-
+
Get the form details by `formId` and `processDefinitionKey` required query param. The `version` query param is optional and is used only for deployed forms (if empty, it retrieves the highest version).
-## Request
+
-
Path Parameters
Query Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the form with the `formId` and `processDefinitionKey` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
index c9ba57ae4b2..93426becf84 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-task-by-id.api.mdx
@@ -5,44 +5,231 @@ description: "Get one task by id. Returns task or error when task does not exist
sidebar_label: "Get a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a task
+
-
+
Get one task by id. Returns task or error when task does not exist.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-User has no permission to access the task (Self-managed only).
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
index 72f7da281e4..85327be002a 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/get-variable-by-id.api.mdx
@@ -7,45 +7,116 @@ hide_title: true
hide_table_of_contents: true
api: eJyVVttu2zgQ/ZUBX9piZcvt5qHQm7tJut522yJ2usAGBkpLI4sNTSrkyKkh6N8XQ0m+xE7XfbIlnjlz0Znh1ILk0ovkTnyVTsmFRi/mkcjQp06VpKwRiXiPBFQgrDsIZEhSaQ+Lze6dyoYiErZEJ9lskolELJF62nebSSYiUUonV0jo2GctjFyhSERPEiCKXZaSCvE0jlmBMLkEmx9Ew24dPlTKYSYSchVGwqcFrqRIakGbkj14csosRdPMGexLazx6Pn8zGvHPoaPPBnyVpug9OKTKGQzJpdYQGmK8LEut0pBp/N2zUX3s1C6+Y0qcteO6kGpdquw4sPNSFU3Ulewce0aeYlhLXZ1JkVdaQ8CfIsqczOn/833GX9Oc8hg4n3EZCVKkmeKSUb20vgb+JhKERhqanFneFs1Vlt7bVEnCDB4VFU/ybHZue483nYJE0/DxxejiWENjA+icdaB2IoLHAs1hK20dfts1wTe2MZYgt5X5mfJKZxcaV7/9qgI9Sar8Hk4ZwiW6ozqNDXRHQIUkcFg69GjIh5j/nM2+QEsGqc22X6xNvO+zIVxbB/hDrkqNEVyMRqBMxjmgBwkv3skMbvChQk8vWlMGXRyCPlmCay7HFiJNBt6CNVyg3LqVpDaT39+wGFbovVyeofMxtAdthqWza5UFnwunMIc98GF6AW7TtHKOx0PDk8uTNOkZPq9aZXR4uL2dXEJuHWhr76sSXuJwOYxAGdB2CV0m/tXwQIyBIygwZEuF7UZuGLNUiETE69dxLysf1zuFNSISHt26n8OV0yIRdaufJonjurCemqQurSMGb1k4Nz5rBZ/LSnPVtU2lDq9PdRof7A+j8ZcJtN5D2djHId3b0dvRSSaGPsOy0/6OpyAqT/K04JNM4YrwmFZO0SYUJ7X2XqFI7uaRWKB06Ab3yEfzfeiUKdv69AZbFchSfcDNUSR/BNxgIT1mICsq0FDX2jwBrNEbkGupdJgU1sAUdT74Wxq5xAxSXXm+SFn+3T06G08/fJxMZ4Pp1XQ6+fypv027gJrD+LfhdWUKReHnFiR69HXfW3/9MwsKVCa3wbxT4kz6e608wc3VdMbVPK55j1DcWA5lthmQHVS+Lf7eTAOy4GSpMr0BxQNjhYZgUXll+DouneVrmftTW7P0KkOoPI8n6e89d8y/iAvsZ6ZMg7JaeXOaPonjx8fHYSpXlcnkMLUrLotWKfI8T7YrycfuTfTEOLOp31orG55jhzk6NCnGHZGPw0WLzrf5r1+3Qve0kmbPC29Wcv+COyhbvZv7v7KDdV+V8AfFpZbKsO+QRd0NhjsOaL+pI5Hs7WDzqGvxO1HXrM5bp5uGXz9U6DZtJ2yD5hbJlOf/mUhyqT3+JI+XN92q9gqeX+dOZtD3ktmI7Q4jRCSClvdXyGbeRKJAmaELwbWAcZpiSXumRyscd/N2jr6/Yq3/B/Aq1EE=
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get a variable
+
Get the variable details by variable id.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
draft object
-
-The draft value of the variable
-
-
-
-An error is returned when the variable with the `variableId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
index 27e5668f33d..c13b8795bc9 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/save-draft-task-variables.api.mdx
@@ -7,53 +7,182 @@ hide_title: true
hide_table_of_contents: true
api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Save draft variables
+
This operation performs several actions:
Validates the task and draft variables.
Deletes existing draft variables for the task.
Checks for new draft variables. If a new variable's `name` matches an existing one but the `value` differs, it is saved. In case of duplicate draft variable names, the last variable's value is kept.
NOTE:
Invoking this method successively will overwrite all existing draft variables. Only draft variables submitted in the most recent request body will be persisted. Therefore, ensure you include all necessary variables in each request to maintain the intended variable set.
The UI does not currently display the values for draft variables that are created via this endpoint.
-## Request
-
-
Path Parameters
Body
required
variables object[]
-
-Variables to update or add to the task.
-
-
Array [
]
-
-On success returned.
-
-
Schema
any
-
-An error is returned when the task is not active (not in the `CREATED` state). An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
-
-An error is returned if an unexpected error occurs while persisting draft task variables.
-
-
Schema
+
+
+
+
+
+
+An error is returned if the task was not claimed (assigned) before, except the case when JWT authentication token used. An error is returned if the task is not assigned to the current user, except the case when JWT authentication token used.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "500": {
+ description:
+ "An error is returned if an unexpected error occurs while persisting draft task variables.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
index 2192123cf65..4d33714bd3f 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-task-variables.api.mdx
@@ -7,49 +7,188 @@ hide_title: true
hide_table_of_contents: true
api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search task variables
+
This method returns a list of task variables for the specified `taskId` and `variableName`. If the request body is not provided or if the `variableNames` parameter in the request is empty, all variables associated with the task will be returned.
-## Request
+
-
Path Parameters
Body
includeVariables object[]
+
-An array of variable names that should be included in the response.
+
-
Array [
]
-
-On success returned.
-
-
Schema
Array [
draft object
-
-The draft value of the variable.
-
-
]
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
index b4d862e180d..29cd08fb76e 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/search-tasks.api.mdx
@@ -5,72 +5,500 @@ description: "Returns the list of tasks that satisfy search request params.
sidebar_label: "Search tasks"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Search tasks
+
-
+
Returns the list of tasks that satisfy search request params.
If an empty body is provided, all tasks are returned.
Only one of `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` search options must be present in request.
-## Request
+
-
Body
followUpDate object
+
-A range of due dates for the tasks to search for.
+If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ value: {
+ type: "string",
+ description:
+ "The value of the variable. When specifying the variable value, it's crucial to maintain consistency with JSON values (serialization for the complex objects such as list) and ensure that strings remain appropriately formatted.",
+ },
+ operator: {
+ type: "string",
+ description:
+ "The comparison operator to use for the variable. * `eq`: Equals",
+ enum: ["eq"],
+ },
+ },
+ title: "TaskByVariables",
+ },
+ },
+ tenantIds: {
+ type: "array",
+ description:
+ "An array of Tenant IDs to filter tasks. When multi-tenancy is enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.",
+ items: { type: "string" },
+ },
+ sort: {
+ type: "array",
+ description:
+ "An array of objects specifying the fields to sort the results by.",
+ items: {
+ type: "object",
+ properties: {
+ field: {
+ type: "string",
+ enum: [
+ "completionTime",
+ "creationTime",
+ "followUpDate",
+ "dueDate",
+ "priority",
+ ],
+ },
+ order: {
+ type: "string",
+ description: "* `ASC`: Ascending * `DESC`: Descending",
+ enum: ["ASC", "DESC"],
+ },
+ },
+ description: "Sort results by a specific field.",
+ title: "TaskOrderBy",
+ },
+ },
+ searchAfter: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchAfterOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBefore: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ searchBeforeOrEqual: {
+ type: "array",
+ description:
+ "Used to return a paginated result. Array of values that should be copied from sortValues of one of the tasks from the current search results page. It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.",
+ items: { type: "string" },
+ },
+ includeVariables: {
+ type: "array",
+ description:
+ "An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.",
+ items: {
+ type: "object",
+ properties: {
+ name: {
+ type: "string",
+ description: "The name of the variable.",
+ },
+ alwaysReturnFullValue: {
+ type: "boolean",
+ description:
+ "Always return the full value of the variable?",
+ default: false,
+ },
+ },
+ title: "IncludeVariable",
+ },
+ },
+ implementation: {
+ type: "string",
+ enum: ["JOB_WORKER", "ZEEBE_USER_TASK"],
+ },
+ priority: {
+ description:
+ "Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks.",
+ type: "object",
+ properties: {
+ eq: { type: "integer", minimum: 0, maximum: 100 },
+ gte: { type: "integer", minimum: 0, maximum: 100 },
+ gt: { type: "integer", minimum: 0, maximum: 100 },
+ lt: { type: "integer", minimum: 0, maximum: 100 },
+ lte: { type: "integer", minimum: 0, maximum: 100 },
+ },
+ },
+ },
+ description: "Request object to search tasks by provided params.",
+ title: "TaskSearchRequest",
+ },
+ },
+ },
+ }}
+>
-
dueDate object
-
-A range of due dates for the tasks to search for.
-
-
taskVariables object[]
-
-An array of filter clauses specifying the variables to filter for. If defined, the query returns only tasks to which all clauses apply. However, it's important to note that this filtering mechanism is designed to work exclusively with truncated variables. This means variables of a larger size are not compatible with this filter, and attempts to use them may result in inaccurate or incomplete query results.
-
-
Array [
* `eq`: Equals","enum":["eq"]}}>
]
enabled, tasks associated with the specified tenant IDs are returned; if disabled, this parameter is ignored.","items":{"type":"string"}}}>sort object[]
-
-An array of objects specifying the fields to sort the results by.
-
-
Array [
* `DESC`: Descending","enum":["ASC","DESC"]}}>
]
It enables the API to return a page of tasks that directly follow the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly follow or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>It enables the API to return a page of tasks that directly precede or are equal to the task identified by the provided values, with respect to the sorting order.","items":{"type":"string"}}}>includeVariables object[]
-
-An array used to specify a list of variable names that should be included in the response when querying tasks. This field allows users to selectively retrieve specific variables associated with the tasks returned in the search results.
-
-
Array [
]
priority object
-
-Rules to filter out tasks by their priority. Applicable only for Zeebe user tasks.
-
-
-
-On success returned.
-
-
Schema
Array [
variables object[]
-
-An array of the task's variables. Only variables specified in `TaskSearchRequest.includeVariables` are returned. Note that a variable's draft value is not returned in `TaskSearchResponse`.
-
-
Array [
draft object
-
-The draft value of the variable.
-
-
]
]
-
-An error is returned when more than one search parameters among `[searchAfter, searchAfterOrEqual, searchBefore, searchBeforeOrEqual]` are present in request
-
-
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
index 2ecc8512e03..02874cb164f 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/unassign-task.api.mdx
@@ -5,47 +5,231 @@ description: "Unassign a task with `taskId`. Returns the task."
sidebar_label: "Unassign a task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/tasklist-api-rest/specifications/tasklist-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a task
+
Unassign a task with `taskId`. Returns the task.
-## Request
+
-
Path Parameters
+
-On success returned.
+
-
Schema
-
-An error is returned when the task is not active (not in the CREATED state). An error is returned if the task was not claimed (assigned) before.
-
-
Schema
-
-An error is returned when the task with the `taskId` is not found.
-
-
Schema
+An error is returned if the task was not claimed (assigned) before.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ "404": {
+ description:
+ "An error is returned when the task with the `taskId` is not found.",
+ content: {
+ "application/problem+json": {
+ schema: {
+ type: "object",
+ properties: {
+ status: {
+ type: "integer",
+ description:
+ "An integer that represents the HTTP status code of the error response. For example, 400 indicates a 'Bad Request' error, 404 indicates a 'Not Found' error, and so on.",
+ format: "int32",
+ },
+ message: {
+ type: "string",
+ description:
+ "A string that provides a brief description of the error that occurred.",
+ },
+ instance: {
+ type: "string",
+ description:
+ "Error instance UUID for lookup (e.g., in log messages).",
+ },
+ },
+ title: "Error",
+ },
+ },
+ },
+ },
+ }}
+>
diff --git a/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md b/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md
index 3dad8bb79cd..5ecdd5ba456 100644
--- a/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md
+++ b/versioned_docs/version-8.6/apis-tools/tasklist-api/tasklist-api-tutorial.md
@@ -250,9 +250,8 @@ export class TasklistModule implements OnModuleInit {
logger.log("Tasklist credentials fetched");
axiosRef.defaults.baseURL = config.get("TASKLIST_API_ADDRESS");
- axiosRef.defaults.headers[
- "Authorization"
- ] = `Bearer ${credentials.access_token}`;
+ axiosRef.defaults.headers["Authorization"] =
+ `Bearer ${credentials.access_token}`;
axiosRef.defaults.headers["Content-Type"] = "application/json";
setTimeout(this.onModuleInit.bind(this), credentials.expires_in * 1000); // we need convert minutes to milliseconds
}
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
index 3dd58a62c99..03e51ed86ec 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task.api.mdx
@@ -5,51 +5,178 @@ description: "Assigns a user task with the given key to the given assignee."
sidebar_label: "Assign a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztWNty2zYQ/RUMXppMbVFJ3TTRm+M6rdtcPLbcTmN7xiAJSYhJgAVAySpH/96zAKl7LtPmMckkw8tiz+7inCVWDfdi7Pjgml85aZkX7p7fHvBcusyqyiuj+YAfO6fG2jHB6s6IzZSfMD+RbKymUrN7OWferD0QYY2UPX7AK2FFKb20BNRwjRt4JV9DuPpdzmGjCKgSfoJrK/+ulZU5H3hby+1ohsAgODMKcKuQgB9RCdNlE1kKPmi4n1cEp7SXY2nxamRsKXx89OyILxa3EVI6/9Lkc1qzHUFmsFp7eiWqqlCZoGCSD44ianbBTPpBZp5St6aS1ivpwtq2KHS9m1T3liHAzdR6bON9WTvPtPEslUyWlUctLLvTdVHcUeptDM5bpce4pxciLfBsJAonFwdcFIWZvZtKa1W+J5iXc5bLkagLfxDiCNVVjlnZhpAzNWLKs5kAKQo8zudddHmPXUqPZbDHhtwFyDu6tNLXFsTQDLgIWGnm6mzCMuGkixkGoJAdYDUbKetCkrVeAsNRuixFzsRYKN1jIG+EnNG6uanZRExjAR2rVHaPSrCRNSUbW1NXEQg7jj0nj5WV4KxnVmSSYa9zRZVwvRu9KmdqTCGF3qgnkYPKmcXCbdfxmGXIBaDRgE1FUVOcApVTRRESyTKJXOAthrdic4iIau6wD8vwQ5JS55UBeVHCqYlU7LGzUaAECDfFpuYHYX8Ipd1KyvOmZeAN30htD1NCZkjNK0+3oTuQWGMrKBHaRVQM5EN2CLNCxSLNn/aP9jN8md13rt1C8hRplH9ArUAfDm9H/f6nJBIW7ch/T0fKhG5lkpmyKiT5Z2+MlSiKF6oALK67khEjaX2XC0vRDWKhPqJ/rES1yu93+8A2Ec6jZYvLYn9AOiwaphH9+uLVCXtx9ONPt48m3ldukCSz2axnR9mhBCeN7Rk7TnBL/8jucdANcijFPNApj9QVBVt1HuYqmamRyroO3YbNaPs3iPCRthXfNjt0WTbS2iq+89FgVxdnDHXVXo3mROAd6LAmkBP2IjW1H6SF0Pd8Rbxd0G0UV5elsMvPwSYAHDkvfO0++yH44emObyLcr8PhOYsuwKG8680QYQtESZRKq7Iu+QC8xZ14iHfP+v0F+aQd/4JM0BcfKqQfqLWdDshRrngbElMacensa+2MsWqstnEBtNYEWhL/HDOKwj/6rNb3CZMUT8ocmVp3kn/xH/xgH1rRzqxBIrRTEHttLZIr5t/E/k3s38T+tcSOlzjFT0xOJ3XjAnXowD7gCYn0kETqkmbtXL9IVh9sOpNLO+2GgNqiTLyJIlqA+80ELheDpjLWL5LpE9hPhVV0HAkbSq+j2DoSFTj7FJMYyO5m0guaNChJwd5LCcX8gu4wE/NQUcLZ9Pe8/7y/1xWZdrWKji5OL4fs+PyMxZQi99b6QeeShL3XZTT+nNMwmjiJfqb8/JKWxFqkEq3MHtdU/CUfWqzgORxYgxGexItXHUt++3MYNpr62MVq7Dl9EHRE2hxTViTbGhniWNQdfDuzQNSRCUG1NNpMjTYVDIiL+r0nu3RF+qQ6nNfKWofWC8ouO3/0lhV0VLSkRnRnie5NiO1YGU1O4nqMRq+jBfsj4rInATXSr+u7Y/iv0x5Ak0xgXS6Sf8hNkhYmTUqMGEkL5JL3p6cvTw9P3r15c/X2bPjX4euzk9O3l6eH8NvzDz6UltRRCr0WVTw3r0/Q26k3q+/O/x64W0Z4+eATdBnM1os25aaV7DVfSRYLBpvD+JpqQcCovGveNClGtStbLBb0GMyxGJavb1dCDcrOlaPrvB03P5Hmo4t2zH7Mvmyo35tX+1DoeWgZGLFwh0u42/qVYXEL8wmmVciCIo0WJzGewyH5WXnYmfMXB92KYwxtlf+I7cYxgfS77Jnn7y6HJMf2N4bSkJC4FTP6yQP/D/gN/uLGhFoFpYfnDceXYlyLMdlHv/TnX93IKMU=
+api: eJztWNtuGzcQ/ZUBX5qga0lO3TTZN8d1Wre5GLbconEMmMsdSYy55IYXyQth/70YcleyLrmgzWMCGNnLcM7M8JxZjpbM86lj+TW7cmjBc3fHbjJWohNW1l4azXJ27JycagccQm8EC+ln4GcIUzlHDXfYgDcPHvC4BnHAMlZzyyv0aAloyTSvkOWMfI25u/sTG5YxSUA19zOWMYsfg7RYstzbgNvRjGcY4cwkwq1D8qZDJUwnZlhxli+Zb2qCk9rjFC3L2MTYivv06OkRa9ubBInOvzBlQ2u2IxBGe9SeXvG6VlJwCmb4wVFEy10wU3xA4Sl1a2q0XqKLa7ui0PVuUv1bmBi7mdoANt5XwXnQxkOBgFXtGzAWbnVQ6pZS72Jw3ko9ZRmjF7xQyPIJVw7bjHGlzOLtHK2V5Z5gXjRQ4oQH5bMYR6yudGCxC6EEOQHpYcEdcGWRl00fXTmAS/TgZ9LRhtxGyFu6tOiD1cA1oLXGgtTggpiB4A5dyjACxez8DDVMpHUxyaBXwN7Qg9Utn3KpB3DlMEEuaF1jAsz4PBXQQS3FndRTmFhTwdSaUCegjwEDxihri3PUHiwXCMLoUlIl3OC9XpezMEYh1xv1JHJQOUUq3HYdj0EE500FyQDmXAWKk3tYSKViIkKgc7JQmMJbszlGRDV3QflV+DFJ1GVtpPYg9dwkKg7gbBIpUVszlyWWWdwfQum2kvJ83zHwPdtIbQ9TYmZtxrz0dBu7A4k1tYIKtb9IimFtS3YWXW20SzR/Mjraz/BVdj+4bgvJU6JR+SE4j+WAtRk7Go0+J5G4aEf+ezqS4LqTiTBVrZD8w2tjEUr0XCoH3OKqZMRIWt/nAoUpm1SoT+i/tqZQWP242we2iXCeLDtcSP0BuINkWCT064uXJ/D86Odfbh7NvK9dPhwuFouBnYgDLKU3dmDsdGgngv7I7nHUjUWoeBPpVCbqcgXrzgOuRiEnUvQdugsbaPs3iPCJtpXeLnfosmqkwUq289GAq4szkCVqLycNEXgHOq6J5GQ544UJPi8U13dsTbxd0G0UF6qK29XnYBOgzZjz3Af3xQ/BT092fBPhfh+PzyG5AGHKvjdL1wNREpXUsgoVy49Go4xV/D7dPR2NWvJJO/4VmWjA+1pxHam1nY7UUK15GxOT2nmuxbfaGWPlVG7jDtjDJtCR+NeUURL+0Re1vk+YpHhS5sQE3Uv++X/wI10v2oU1ehp3CkEEa1F71XwX+3exfxf7txJ7m7EK/cyUdFI3LlKHDuw5G5JID0ikbrh8cK5vh+sPNp3J0c77ISBYxXK2TCJq8+FwOTPOt/myNta3w/khy9icW0nHkbih9DqJrSeRMoKrWQpkdzPpBU0alCSHd4gFwm/c44I3saKEs+nv2ejZaK8rMu1rlRxdnF6O4fj8DFJKiXsP+kHvkoS912Uy/pLTOJo4FMFK31zSklSLArlFexyo+Cs+dFjRczywRiOWdRcve5b88fc4bjT1sYv12HN6z+mItDmmrEm2NTKksag/+PZmkagTE4PqaLSZGm0qWpcWjQaHu3Q9P4uqE6aqgo6tV0/XnT95E4qOipbUqKRA7WLU3ViZTE7Set/Aq2QBfyVcOIyoiX59351KPwvFQJhqKHgVdMlX/xfKFMOKSz3soNzw3enpi9ODk7evX1+9ORv/c/Dq7OT0zeXpweHgcODvfSwu6aPi+kFc6eT8cIbeTn65/vL875G744THez+sFZea9iYmvexEe83WomUZyzfH8Qe6vck67V2z5bLgDq+salt6/DGgbVh+fbOWatR2KR1dl93A+Zk0H110g/Zj+Lqxfm9e3UOum9g0VKA7lrE7bLZ+Z2hv2ozNkJdoY6TJ4iTFczAmP2sPO5N+m/UrjoXA2n/CduOgQApedc3zt5djEmT3K0NlSErM8gX96MEXKWoT6xR1Hp8tmeJ6GviUbJNP+vcv8esolw==
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Assign a user task
+
Assigns a user task with the given key to the given assignee.
-## Request
+
-
Path Parameters
Body
required
+
-The user task's assignment was adjusted.
+
-
-
-The assignment of the user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
index 76903ffe6b9..d50f3c05387 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task.api.mdx
@@ -5,55 +5,172 @@ description: "Completes a user task with the given key."
sidebar_label: "Complete a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztV8Fy2zYQ/RUMTslUFuXUTRPdHFVp3caJR5bbaWwfIBKSkJAEA4CSVQ7/vW8JUpREe+x2crQ99hDE4i12970lUHAnFpYPr/mVlYY5Yb/y2x6PpA2NypzSKR/ykU6yWDppmWB5Y8bWyi2ZW0q2UCuZsq9y0+c9ngkjEtgaAi14igEQaNUUi/6QG9goAs2EW+LZyG+5MjLiQ2dyeeh5CngAMz2vPLXOnWZhvSvyasOlTAQfFtxtMnKoUicX0mBqrk0inH/1+oSX5a13Kq17p6MNrWn3MBexxSZCjeWpozmRZbEKBe0n+GJpU0XXm559kaGj6I3OpHFKWppdCaPELPYDEUWKUER8sWP0UNDbpbuRHuSACkDBH24izeOY1nr0ssdF6JGLA0enLMyt0wnzBnAa5+REOGDHMZtJzITSWgU0NjewbL1LFN1ZZqTNY6fShZ93S2WZTKNMI91MpSvtc9dnZ3OWaseQoZWKZNRjqvYSybkABAV6w5tQb3j/Jm1js87ARTc2BOeUo2HFX6JYTVb4nPgqo+Rkh41mOrW+GK8GJ910TPezK+w28RGzeZWIOdyD5oA7GQweRegIhIUipSQgsVvoPjvXRiILTqgYCsNzkyPkr1rfbJ3NQFiflwcYipVITvJDl6mHlb/wlrVf5snDELM3nHnv15P3I/b25Kefb18sncvsMAjW63XfzMMjCTpr09dmEWBIf2T3ss+QBMSQiE3Fny3rWasNZjMZqrkKqeYUYL1tRtXeq/sDwvKzRYcdW63nRvFDWZ2yq8kZQ15Tp+YbYmzHdbWmYiPsxUznbjiLRfqVtzzrOj30YvMkEWbbs/YdAMg64XL7aK/68VUHm+j123R6wTwEOBRBltp41dWOKIhEpSrJEz4ESzESd370ejAoCZMq/oRIUibvMoRfUeswHJAjaXlbBaZS7CsNv1dltFELdegXjnY0X5P4Fx+R1/nJE6TdFSapnZQ513ka1QJ/+z9wUIdatGujEQhVCmLPjUFwaB3PYn8W+7PYv5PYMYmj5lJHdJzUtqIOnSqHPCCRHpFIbVDsHD7LINweD+jYKM2qOanmBmnihRdRCe4XS0CWwyLTxpXB6hj2ewc6mvZia0gU47ATL/1GusWkCToOU5CCfZYSivkV3WEt/ImC/OzjvRm8GdwLRaZNrjzQZHw5ZacXZ8yH5Lm30w8aSBL2vZDe+DHQ6vRsJfqZcptLWuJzMZNoZeY0p+Rv+VD7qpBp7I3wxj+8b1jy+1/TqtDUxybtyXx8J6hUhwfpnfNsw7iKjnNdua7Jsh8AlQ519osG/eMuKREkaQvsSPK0arAg5ra/e7QwxmmZ0tDj6MESPZo81jccbzLy692GffAW7E/vlx1XXj3Jmu66AH4+68NpEAqsi0TwD8EEs1jPgkSoNKgd2eDzePxufDT6dH5+9fFs+vfRh7PR+OPl+Ai4fXfnqgSSBhKR7uyqubntXtwOgy/a78t/uunVVXbyzgXoHLjUlXWARS3Da97KEAuG+7fAHSWCVF5N17woZsLKKxOXJb0GGwzuaNe3rfgqtUbK0nN7ZXswpBeT+nb3kj31NnlvZPVLkW6qRoCbEkZ4BODBBbe8hflSighkp716i5Hf0dGUcFqEzv2y7DUrTnHlyNwDtnsff1LlthNefLqcksjqy22C7wbeGrGm2zb+D/kNfjHQVbYq/VbvC47+v8jFguw9Lv38C0iulxI=
+api: eJztV9ty2zYQ/ZUdPDVTWpRTN0345rhO6zYXjy230zh+AMGlhBgEGACUzOHw3zsLUKIu8STt5DGe0VgkFnv2cg606Jjnc8eyW3bj0ILn7p7dJaxAJ6ysvTSaZezMVLVCjw44NGszWEm/AL9AmMslarjHdsISVnPLK/RoyWnHNK+QZYx2zbi7/xNbljBJTmvuFyxhFj810mLBMm8b3EeeLZAcgykD0gjuDYghKkJ1YoEVZ1nHfFsToNQe52hZwkpjK+7jq2cnrO/vIig6/9IULe0ZYyi5cpgwYbRH7WmN17WSglM86UdHQXWHaCb/iMJT9tbUaL1ER6tLbiXPVXzgRSHJC1eXW0aPJb3Zup3pXg2oAZT8fhC6UYr2Ru99wriInrs9oFMQjfOmgmgAS64aAuEeVlIpyBG4EOiczBVCaU21hY5L1N6BRdcoL/U8rvuFdIC6qI3UHqRemli7CVyUoI2H2pqlLLBIQA4oBZa8UZ4S/cDWqX5gkw96zM15K/X8MLc+YV56egz8JYoNZJVGX8Uus74nO4uuNtrFZjydnhyWY7ZbXe42hS/ANaEQZaNUO2F9wk6m0y96OBAICK6pCDmOrifwxliEAj2XygG3uKkRSB32r0OH3BRtrMsjDK2tyRVWPx4ydb/zl9FywIVIHuAOomEe0W+vXp3Bi5Off7n7YeF97bI0Xa1WE1uKIyykN3Zi7Dy1paAP2T2ZwGyBFqHibeDPhvUwagNcjUKWUlDPKcEhbKBu7/T9EWHF1e6AHRutN1ayfVmdws3VBcgCtZdlS4w9gA57AhtZxnhuGp/liut7NvLsEHQfxTVVxe3mzNoF6BPmPPeN++JZ9dPTA99Er99ns0uILkCYAqE0NqpuAKIkKqll1VQsO5lOE1bxh/j0bDrtySd1/Csy0YAPteI6UGs/HamhGnkbEpPaea7Ft+qMsXIu93EnbFvzA4l/jRlFnZ98hbQPhUlqJ2WWptHFIPAX/8OPdGvRrqzR89ApBNFYi9qr9rvYv4v9u9i/ldj7hFXoF6agcdK4QB2aKjOWkkiPSKQu7baGzz4Vm/GAxka0y/Wk2ljFMtZFEfVZmnYL43yfdbWxvk+XxyzZHehoOYptTSJlBFeLGMhhM2mBxmFKksN7xBzhN+5xxeNEQTi7/p5Pn08/64pM17WKjq7Or2dwenkBMaXIva3zYO2ShP1Zl9H4S07D9OxQNFb69pq2xFrkyC3a04aKv+HDgBU803M0Ysnw5dWaJX/8PQuNpnPsapzMzx84tWp/kN6aZ9eMC3QsTYAeyLKbALUOrYubppPjQ1JeXgRtCVNVjQ4HrJ6P53v0JlTjPJUhYUoK1C7ENtxwoslZ3O9beB0t4K+IC8cBNZJsfbrOpV80+USYKhW8anTBN/9zZfK04lKnA5RL35+fvzw/Onv35s3N24vZP0evL87O316fHx1Pjif+wYcSkgoqrrfiWt/dtq9u++l34y/Mf7rrDX32+ODTWnGpqRMhxW4Q4i0bhcgSlu3eA7e0eJcMerplXZdzhzdW9T29/tSgbVl2ezfKL+i1kI6+j5e2R1P64Wq43z2Br71Pfjaz4SXXbTgKVENPLGH32O5dcfu7PmEL5AXaEGu0OIsRHc3Iz+jh4IbZJ+sdp0Jg7R+x3fn5J11uzsLLd9czktlwva1MQXstX9F9m69i1CZUKqg3vOuY4nre8DnZRp/09y9+Zpbk
sidebar_class_name: "post api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Complete a user task
+
Completes a user task with the given key.
-## Request
-
-
Path Parameters
Body
variables objectnullable
-
-The variables to complete the user task with.
-
-
-
-The user task was completed successfully.
-
-
-
-The user task with the given key cannot be completed. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
index c07bf7f8421..07546761dbf 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology.api.mdx
@@ -5,44 +5,143 @@ description: "Obtains the current topology of the cluster the gateway is part of
sidebar_label: "Get cluster topology"
hide_title: true
hide_table_of_contents: true
-api: eJy1Vttu2zgQ/RWCT7uAEzndlyJvqesGXvQSJO4utoEfKHkss6VELUk5dQX/+86QlCXbai5AFzBgiRqeM8M5M8OGO5FbfnnPJ6q2DgxfjPgSbGZk5aQu+SX/lDohS8vcGlhWGwOlY05XWul8y/QqrIfN/jkXDh7ElknLKmEcmpzzETdgK11aQK6GvxqP6e//4Ml06XAnwYuqUjITBJ98tcTRcJutoRCn5HMEbF0kMtFRG/i3BusI3G0rQGOdfoXM4XtldAXGyRBVavQ3MPYU/IopaclBFk3Qf+GYMNB6jgsYRoyuxySMEVt8LWulRKpwyZkaRlw6KAaIbozeSFxislxpU/jQGf5EJGalXsLTgZDVbDl8SHUp8TjYbw8SXSbk6PTvHpvN3jJk9vkJlD02iZnJUWEjHpwLS3+84rsRX2vrhgnpSykK8LgGRIa0+TCBdQa/EVylzU/g6MszoB7zlXImCfLRVHdWrBClyGHJPGvQJL2VIesn3G3SX5zkPSXbZ+dFed/vfyL5mORWsvstzzw7o0nEx9hv/VsKofhvxcoxMmyrPgZBWRMslxsoB3lj+kccyrqglqZALKMfSukH/yhLkTmE4AtSHQjl1k/50zajYN069SwPwhZKZl12z0v0C/nRAUSg8+A3LRin1Q22CBn61WkO4mFEmwH192DfeNsZ6sQvx1K9kz8GckDY6HWK2L1GJct+331Oko+b1UHBTHRd/qQwO+5e5VCLtBWW6pKJzGhrf4E3bQkiwTvUgjbD/uAgWcm8NlipvR1s5bfEJjfYs1/iS5xhfz2W8JjpVndfAFJg12HjkPaOSHpymMeRdhsHHYpiR98LcGuNJc9z8E1BUE3wpJ2AuGTBbPxou294bRR+bcIk3V0mSUMtenfZUGvdJZsLtN8II8kH31a63r4StaLzUDoTyi8fXzYOOr6fw0fxHjT3Fu/1+PV4EMp3+4ODu53ezdnVzYyFkDxg/1LQQq6dqwYhg/FToLvdgk4NW4d02zvaEu8IgJI2V3XoOjF1kcsj03swwpXw8K6V0Z9/z30dU+P322NeD53gvQbCx+cXJ1GQo6TfTBcFdnQSNo5BGhm9kHq6Ru0DqYVuBqLoCCdhv9uy98GCRR2zC88ahELBWVRJjvh1eo6kSSZw31IkPwgmSZVOkwKvfkkkssmX6fTN9Gzy6cOHzx9n83/O3s8m04930zPEPXffnT+EClWCg7Xn1TW47oLYafcg+Ka7IP6iC2fMoYPvLqkUApKifOhNrKR7vvdm0d507nnTpMLCZ6N2O1rGuWq2uL7oiofewpCiKUal9w22lL8sg8r5KlO1vzAcX3RJfPuivp6Sav4D0YQjZg==
+api: eJy1Vttu2zgQ/RVinnYBJUq6L4Xe0sQNvOglSNxdbAM/UNJYYiuRCkk59Qr698WQlC3bai5A1y+S6OE5MzxzYQeWFwaSe7isWmNRwzKCHE2mRWOFkpDA59RyIQ2zJbKs1RqlZVY1qlLFhqmVX/eb3XvBLT7yDROGNVxbplanEIFG0yhp0EDSwZuzM3r8HzyZkhalJXjeNJXIOMHH3wxxdGCyEmt+TL4okQ0uEhnfUWt8aNFYArebBiEBlX7DzEIEjVYNait8VKlW31GbY/ALVglDDrJgwmzJLeMaB8+ZLYUZohsxca35BiKQbVXxtEJIrG4xAmGxniC60WotcjRMyJXStQudKcl4IGZS5fh8IGQ1z6cPqZXioUX226OwpSDk4PTvDpvNr9hKeX085YhNSIsFaojAO+eX/ngDfQSlMnaakP6RvEaHq5FnpZDFNIGxWsiC4BqlfwJH/7wA6ilfSTNBkE9KvbNiNZe8wJw5Vp+T9CW96kfcg+ivFnlLybbqvEr37f5nxJ9fbVN2u+WFZ6cVJfEh9pX7StEX/y1fWUaGQ9WHIEg1zgqxRjnJG+SPAGVbU0urkOfBj6pSj+5VSJ5ZsUZYUtYhr2z5nD9DM/LWg1Mv8sBvITFbuXvPkeew7PsIrLB0HnAzgAGtrlEb4fvVsQbhMILNRPaPYN8527lcKbccSvVO/DuhAWHLtk5RjxuVkOO++xKRD5vVXsFcqlb+pDB33KPKoRZpGo08ZzzTyphf4M1QgkLJ9zyzSk/7kym5EkWrMWejHWzltoQmN9mzX+NLmGF/PSV4UHrIu6+IKbJrv3Eq9w5IRumwCCPtNgw66OkXQY22VDkkUKBrCpxqAuJhAkIEBvXajbb7DlpdQQKdn6R9Escdteg+6ai19vH6HCJYcy3IB9dWdr19xduKzqNSGa/c8uFlY6/juzl8EO9ecx/w3p69PZuEct1+7+BuZ3cLdnEzZz4kBzi+FAyQpbXNJKQ3fg6075d0almrhd3c0ZZwR0CuUV+0vusE6QKXQ6ZvbwRReHk/pNGffy9cHVPjd9uDrvtOwKiBwNnp+VEU5Cjlb6bqupUusWXhRsYopFFeVyJDyha6GfB6R3jp99sN++AtWMhjdu5YfaJQcCaJ40LYsk1PM1XHGa9bmfPtM61UGtdcyDhQmfjrbPZudnL5+ePHL5/mi39OPswvZ5/uZifnp+en9od1x9AoY2suR35do91dEXfZuxd+t7si/qIrZ1DR4g8bNxUXknLKBd+FWrqHrTfL4a5zD12XcoNfdNX3tPzQot5Acr/clQ99+TFFc4yK7ztuSMEsw8a6Oqtad2U4vOpS+m3L+npGefMfQ+wkNA==
sidebar_class_name: "get api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Get cluster topology
+
-
+
Obtains the current topology of the cluster the gateway is part of.
-## Request
+
-
+
-Obtains the current topology of the cluster the gateway is part of.
-
-
Schema
brokers object[]nullable
-
-A list of brokers that are part of this cluster.
-
-
Array [
partitions object[]
-
-A list of partitions managed or replicated on this broker.
-
-
Array [
]
]
+
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js
deleted file mode 100644
index 25b13ac45ac..00000000000
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.js
+++ /dev/null
@@ -1,48 +0,0 @@
-module.exports = [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/zeebe-rest-api",
- },
- {
- type: "category",
- label: "Cluster",
- items: [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/get-cluster-topology",
- label: "Get cluster topology",
- className: "api-method get",
- },
- ],
- },
- {
- type: "category",
- label: "User task",
- items: [
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/complete-a-user-task",
- label: "Complete a user task",
- className: "api-method post",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/assign-a-user-task",
- label: "Assign a user task",
- className: "api-method post",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/update-a-user-task",
- label: "Update a user task",
- className: "api-method patch",
- },
- {
- type: "doc",
- id: "apis-tools/zeebe-api-rest/specifications/unassign-a-user-task",
- label: "Unassign a user task",
- className: "api-method delete",
- },
- ],
- },
-];
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts
new file mode 100644
index 00000000000..909b802299c
--- /dev/null
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/sidebar.ts
@@ -0,0 +1,54 @@
+import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
+
+const sidebar: SidebarsConfig = {
+ apisidebar: [
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api",
+ },
+ {
+ type: "category",
+ label: "Cluster",
+ items: [
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/get-cluster-topology",
+ label: "Get cluster topology",
+ className: "api-method get",
+ },
+ ],
+ },
+ {
+ type: "category",
+ label: "User task",
+ items: [
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/complete-a-user-task",
+ label: "Complete a user task",
+ className: "api-method post",
+ },
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/assign-a-user-task",
+ label: "Assign a user task",
+ className: "api-method post",
+ },
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task",
+ label: "Update a user task",
+ className: "api-method patch",
+ },
+ {
+ type: "doc",
+ id: "version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task",
+ label: "Unassign a user task",
+ className: "api-method delete",
+ },
+ ],
+ },
+ ],
+};
+
+export default sidebar.apisidebar;
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
index b9b6246ae24..0f94a3833e8 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/unassign-a-user-task.api.mdx
@@ -5,51 +5,145 @@ description: "Removes the assignee of a task with the given key."
sidebar_label: "Unassign a user task"
hide_title: true
hide_table_of_contents: true
-api: eJztV01z2zYQ/SsYnJKpJcqpmya6qY7SurUTjyy107g6gORKQkwCDD4kqxz+9+4SpL5bdzI5+uAxAe6+t4vdBy1L7sTc8v49n1gwzAn7wKdnPAWbGFk4qRXv8xHkegmWuQUwYa2cKwCmZ0zU9mwl3aJ+N5dLUOwB1l1+xgthRA4ODKGXXOECoTyyjNHpN1ijjST0QrgFPhv44qWBlPed8XAYwhjhEZhYicm3wRKTTRaQC94vuVsXRCKVgzkYfDXTJhcubL2+4FU1JSJbaGXBkser3gX9OybbMLCVsMyrJu+UWZ8kYO3MZxnmWZ3xi17vSYijE2KJUEo7FsMOdpfdaAMsBSdkZpnA58LopUyRVqoaoA2exTpdd/9SmGOiMV3lKAZRFJlMBMUQoWecQf7dZ0sBlTuntB/pgN0Gy4aX6fgzJA4LzYJhHNjvR+8v2duLH36cvlg4V9h+FK1Wq66ZJR1IpdOmq808wiX9kd3LLsNTwBxysaY8RYpmyCkyyqoA4yT2lC0gkTOZMKfrBJuwGZUy5NcUNYRFjbVx3pZ8U3rrjFTz3cp7I/lhNw3YZHTF8FyVk7M1OhxT1z4z4TPCELH2rh9nQj1QxZ102UnSQxbr81yYTdfuEyCQdcJ5+2Tnfv/qCJv665fx+JYFCJboFBj6II+0LRElkUslc5/zPrYprsRjWL3u9SrCpIr/j0wUg8cC069b6zAdbI5827d1YlJhXCr5VpXRRs7lIS8SbWvBmyZ+FzKqqqpW5tPiPlYm6Z2kOdNepY3C334FDtahEe3KaEyEKgUs8cZgcnh3PIv9WezPYv9GYseXOGwsNI4PSJLh3FGPIDhZ9HlEMu2QTG1U7gwgVdQOMzREgFm2s4o3eEy8DCKqsPfLhbau6peFNq6KludovxRGCgyiLii9DmJrmyjTicjq7VPFpBc0EIUh6hMAKuZnvB1WIowUxLOP96b3pncSikzbswpAo+HdmA1ur1hIKfTezn3QQpKwT0IG46dA61nKAt5n0q3vyCWcRQx4lZmBp6Pf9EPDVSPTOhjhTnh433bJr3+M60JLNdO1e1Pw/SDo+LFWIeJe9/y4sTBQ0kei89yr+pLE5trc0QEtybx1lMoZx3sU8J4lxmZODSaXwd+t2XWwYL8HXnZes4ZGaW/IOeL7uIukUSLQLxXR3wQTxZmOo1xIFTVENvo0HP407Fx+vLmZfLga/9m5vrocfrgbdhC36x5dfQgFdkku1E5Uk2ZUxKbZ/PQcJl9ufyO+bnBvSubg0UV4DeCMXjWZlo2i7vlWUejQ3x/qN6LC/gjCuOdlGQsLE5NVFW1/8WDWuD/d6qgWXiotPaOIZyKzhx8Bu5m9GDWfCy/Zf30anMyl2RRqXes487TCRwQ5+EKppmi+AJFir1J8wWKAHwCF2/H9119iksjmWno3vB6Oh1jZfwDR0aEr
+api: eJztV01z2zYQ/SuYPSVTmpRTN014cx2ldWunHltup3F1AMGliBgEGHxI5nD43zsAqA9Lbt3J5JiDhiK5eG8X+x657MHShYH8Dm4NamKpuYd5AiUapnlruZKQwzU2aomG2BoJNYYvJCJRFaEhnqy4rcO9BV+iJPfYpZBASzVt0KL26D1I2iDk4AzqGTX3v2EHCXCP3lJbQwIaPzuusYTcaof7Kcxq9MCe1TO5dbKeybAaGwp5D7ZrPQmXFheoIYFK6YbaeOn1CQzD3BOZVkmDxq94NTnxh0OyDQNZUUOcHOsuiXGMoTGVE6JLYUjgZDJ5FuJghwijUipLCtzBTsml0khKtJQLQ6hG0mq15CWWhMsAsE6eFKrs0r8lJMCUtCitz4G2reCM+hyyVqtCYPPdJ+MT6nd26XGmp+QqRo68RBWfkFlCDYmBRWS/u35/Rt6e/PDj/EVtbWvyLFutVqmu2BGW3CqdKr3IdMX8z8e9TMmsRo2koZ2vk5Yl95xU+Kpa1JajIaZFxivOiFWhwDFt4lsZ6xubGtPywtos3rZ803pjNZeL3c47zWFfTafk9vqc8BKl5VXH5eKQOqypqBMegxbK2bwQVN77jltuxZOk+yzGNQ3VG9U+JhgSMJZaZ55V7vevDrC9vn6Zza5IhCBMlUgqpYmtuVkT+SIaLnnjGshPJpMEGvoQz15PJoPH9B3/H5VIgg+toDJIa78cLkmz1W0ojEtjqWRfqzNK8wXf501h2PYCRhG/ixUNwxCc+by5D53p/e6tWSkny9Hhb78Ah5u1aVdayUXoFBLmtEZpRffN7N/M/s3sX8vsQwIN2lqVkEOJAi2GEcTWkEPmbXrkbWqyfmcAGbL1MOOHCNTL9azitIAc+miiIc+yvlbGDnnfKm2HbHkMCSyp5rQQUZf+djTbWkRCMSrC5aea6W/4gSgOUR8RCyQ/U4srGkcKz/MY783kzeRJKB+63qsIdD29mZHTq3MSS4ra23kerCG9sZ+EjMHPgYZZyiBzmtvuxi+Je1Eg1ahPnd/6jR5GroDsz2MQJOOf92uV/PrnLDSay0qF5WPDHyfhtx+1iRlP0uNDYV2dB38w1TROhoekXGyf0RGNCWesLyUBwRlKEwQ8zqkx5Cyutx25iBHkj8hLjgNrFMr6CbngtnZFylSTMdo4WdLNsRCqyBrKZTZSmezjdPrT9Ojs98vL2w/ns7+OLs7Pph9upkfH6XFqH2zYhlYZ21C5k9ftOCwSun357Jffb98SXza6j02z+GCzVlAuvYRCrf3oqTvYegoSyB+P9RtbzZPRGnfQ9wU1eKvFMPjLnx3qDvK7+dZJwXolN/5/CXlFhdn/DNit7MX1+MHwkvzXx8GTtYwXqeyCk4XzZ5DAPXZ73yjDfEigRlqiDvnFiFPGsLU7a//1XexNsnkwvZteTGdTGIZ/AFgoofk=
sidebar_class_name: "delete api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Unassign a user task
+
Removes the assignee of a task with the given key.
-## Request
+
-
Path Parameters
+
-The user task was unassigned successfully.
+
-
-
-The user task with the given key cannot be unassigned. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
index 71af92194c3..3cbf8ae7b3d 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/update-a-user-task.api.mdx
@@ -5,69 +5,211 @@ description: "Update a user task with the given key."
sidebar_label: "Update a user task"
hide_title: true
hide_table_of_contents: true
-api: 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
+api: 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
sidebar_class_name: "patch api-method"
-info_path: docs/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
+info_path: versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api
custom_edit_url: null
hide_send_button: true
---
-import ApiTabs from "@theme/ApiTabs";
-import DiscriminatorTabs from "@theme/DiscriminatorTabs";
import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
-import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes";
-import MimeTabs from "@theme/MimeTabs";
-import ParamsItem from "@theme/ParamsItem";
-import ResponseSamples from "@theme/ResponseSamples";
-import SchemaItem from "@theme/SchemaItem";
-import SchemaTabs from "@theme/SchemaTabs";
-import Markdown from "@theme/Markdown";
+import ParamsDetails from "@theme/ParamsDetails";
+import RequestSchema from "@theme/RequestSchema";
+import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
+import Heading from "@theme/Heading";
-
Update a user task
+
Update a user task with the given key.
-## Request
-
-
Path Parameters
Body
changeset objectnullable
-
-JSON object with changed task attribute values.
-
-The following attributes can be adjusted with this endpoint, additional attributes
-will be ignored:
-
-- `candidateGroups` - reset by providing an empty list
-- `candidateUsers` - reset by providing an empty list
-- `dueDate` - reset by providing an empty String
-- `followUpDate` - reset by providing an empty String
-
-Providing any of those attributes with a `null` value or omitting it preserves
-the persisted attribute's value.
-
-The assignee cannot be adjusted with this endpoint, use the Assign task endpoint.
-This ensures correct event emission for assignee changes.
-
-
-
-The user task was updated successfully.
-
-
-
-The user task with the given key cannot be updated. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
-
-The user task with the given key was not found.
-
-
-
-The user task with the given key is in the wrong state currently. More details are provided in the response body.
-
-
Schema
= 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+
+
+
+
+
+
+
diff --git a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
index 66890419109..171c1bc1269 100644
--- a/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
+++ b/versioned_docs/version-8.6/apis-tools/zeebe-api-rest/specifications/zeebe-rest-api.info.mdx
@@ -9,18 +9,26 @@ custom_edit_url: null
---
import ApiLogo from "@theme/ApiLogo";
+import Heading from "@theme/Heading";
import SchemaTabs from "@theme/SchemaTabs";
import TabItem from "@theme/TabItem";
import Export from "@theme/ApiExplorer/Export";
-