Overview
The Camunda 8 REST API is a REST API designed to interact with a Camunda 8 cluster.
Ensure you authenticate before accessing the Camunda 8 REST API.
Context paths
For SaaS: https://${REGION}.zeebe.camunda.io:443/${CLUSTER_ID}/v2/
, and for Self-Managed installations: http://localhost:8080/v2/
.
Find your region and cluster ID under Connection information in your client credentials (revealed when you click on your client under the API tab within your cluster).
For Self-Managed, the host and port depend on your configuration. The context path mentioned here is the default for the Zeebe component.
API Explorer
See the interactive Camunda 8 REST API Explorer for specifications, example requests and responses, and code samples of interacting with the Camunda 8 REST API.
Deployment API
You can change the maxMessageSize
default value of 4MB in the Gateway and Broker configuration.
If you do change this value, it is recommended that you also configure the Deploy resources REST endpoint appropriately. By default, this endpoint allows single file upload and overall data up to 4MB.
You can adjust this configuration via the following properties:
spring.servlet.multipart.max-file-size=4MB
spring.servlet.multipart.max-request-size=4MB
For example, if you increase the maxMessageSize
to 10MB, increase these property values to 10MB as well.