https://github.com/endpot/camunda-rest-client
Restful client of Camunda written in PHP
https://github.com/endpot/camunda-rest-client
camunda php rest workflow workflow-engine
Last synced: 5 months ago
JSON representation
Restful client of Camunda written in PHP
- Host: GitHub
- URL: https://github.com/endpot/camunda-rest-client
- Owner: endpot
- License: mit
- Created: 2017-10-21T13:23:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T21:14:40.000Z (about 3 years ago)
- Last Synced: 2025-07-10T15:45:26.245Z (12 months ago)
- Topics: camunda, php, rest, workflow, workflow-engine
- Language: PHP
- Homepage:
- Size: 95.7 KB
- Stars: 19
- Watchers: 5
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# camunda-rest-client
```php
# an example to use camunda rest api to complete task
use Camunda\Entity\Request\TaskRequest;
use Camunda\Service\TaskService;
$host = 'http://localhost:8080/engine-rest';
$taskRequest = new TaskRequest();
$taskService = new TaskService($host);
$taskId = '8cd376cc-bf7f-11e7-a6e2-005056c00008';
echo $taskService->complete($taskId, $taskRequest);
```