Zeebe · Example Payload

Zeebe Createprocessinstance Example

BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

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

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "/v2/process-instances",
    "headers": {
      "Authorization": "Bearer {token}",
      "Content-Type": "application/json"
    },
    "body": {
      "bpmnProcessId": "order-process",
      "version": 1,
      "variables": {
        "orderId": "ORD-12345",
        "amount": 99.99,
        "customerId": "CUST-001"
      },
      "tenantId": "my-tenant"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "processInstanceKey": 2251799813685295,
      "processDefinitionKey": 2251799813685249,
      "bpmnProcessId": "order-process",
      "version": 1,
      "tenantId": "my-tenant"
    }
  }
}