Zeebe · Example Payload

Zeebe Deployresources Example

BPMNCamundaCloud NativeDistributed SystemsJavaMicroservicesProcess AutomationWorkflow Orchestration

Zeebe Deployresources 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/deployments",
    "headers": {
      "Authorization": "Bearer {token}",
      "Content-Type": "multipart/form-data"
    },
    "body": {
      "resources": ["<binary BPMN file content>"],
      "tenantId": "my-tenant"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "deploymentKey": 2251799813685281,
      "deployments": [
        {
          "process": {
            "bpmnProcessId": "order-process",
            "version": 1,
            "processDefinitionKey": 2251799813685249,
            "resourceName": "order-process.bpmn",
            "tenantId": "my-tenant"
          }
        }
      ],
      "tenantId": "my-tenant"
    }
  }
}