Zeebe · Example Payload

Zeebe Api Topology Response Example

BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

Zeebe Api Topology Response Example is an example object payload from Zeebe, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

brokersclusterSizepartitionsCountreplicationFactorgatewayVersion

Example Payload

Raw ↑
{
  "brokers": [
    {
      "nodeId": 100,
      "host": "example-value",
      "port": 100,
      "version": "1.0.0",
      "partitions": [
        {
          "partitionId": {},
          "role": {},
          "health": {}
        }
      ]
    }
  ],
  "clusterSize": 100,
  "partitionsCount": 100,
  "replicationFactor": 100,
  "gatewayVersion": "1.0.0"
}