For the complete documentation index, see llms.txt. This page is also available as Markdown.

Case Management API

Uruchamia nową instancję procesu

post

Startuje proces dla podanego klucza definicji. Uwaga: processDefinitionKey występuje zarówno w path, jak i w body (zgodnie z aktualnym kontraktem requestu).

Authorizations
AuthorizationstringRequired
Path parameters
processDefinitionKeystringRequired

Klucz definicji procesu.

Body
processDefinitionKeystringRequired

Klucz definicji procesu.

businessKeystring · nullableOptional
modelInstanceIdstring · nullableOptional
eventChannelstring · nullableOptional
Responses
200

Id instancji uruchomionego procesu.

stringOptionalExample: a3f9a7c2-6d61-4d35-9f8b-f3c9f1b8a111
post/v1/{processDefinitionKey}/start
POST /api/case-management/v1/{processDefinitionKey}/start HTTP/1.1
Host: localhost:8080
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 179

{
  "processDefinitionKey": "loanProcess",
  "businessKey": "BK-2026-0002",
  "processVariables": {
    "customerId": "C-123",
    "amount": "10000"
  },
  "modelInstanceId": "model-1",
  "eventChannel": "default"
}
a3f9a7c2-6d61-4d35-9f8b-f3c9f1b8a111

Last updated

Was this helpful?