pabloreyesrobles/camunda-rest-client

Camunda REST Client. Modded by pabloreyesrobles

Maintainers

Package info

github.com/pabloreyesrobles/camunda-rest-client

pkg:composer/pabloreyesrobles/camunda-rest-client

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2024-08-22 20:21 UTC

This package is auto-updated.

Last update: 2026-02-22 23:46:32 UTC


README

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