An open API service indexing awesome lists of open source software.

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

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);
```