# help-workflow **Repository Path**: sparklex/help-workflow ## Basic Information - **Project Name**: help-workflow - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-25 - **Last Updated**: 2025-08-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Document https://blog.csdn.net/m0_74240566/article/details/143973617 https://blog.csdn.net/m0_74240566/article/details/143973617 # Download https://downloads.camunda.cloud/release/camunda-modeler/5.38.1/camunda-modeler-5.38.1-win-x64.zip # Console http://localhost:8080/camunda/app # Rest Api https://docs.camunda.org/rest/camunda-bpm-platform/7.24-SNAPSHOT/#tag/Authorization GET localhost:8080/engine-rest/process-definition GET localhost:8080/engine-rest/process-instance ### Start Process ```bash POST localhost:8080/engine-rest/process-definition/key/{id}/start { "businessKey":"abc", "caseInstanceId":"100", "variables":{ "a": { "value":"100" }, "b": { "value":"200" }, "c": { "value":"300" } } } ``` POST localhost:8080/engine-rest/process-definition/key/{key}/start POST FORM localhost:8080/engine-rest/deployment/create ## Tasks http://localhost:8080/camunda/app/tasklist ```bash GET localhost:8080/engine-rest/task POST localhost:8080/engine-rest/task/21caebfd-8270-11f0-a9c2-408d5c5b2329/complete { "variables": { "Approve": { "value":"N" } }, "withVariablesInReturn": true } ```