APIs to manage tasks in camunda 8 self managed

Is there a way to manage tasks
-fetch tasks
-complete task etc
through APIs in camunda 8 self managed.

Hi, @savi003, thank you for your question.

In Camunda 8, the available APIs are described in the official documentation. You can find detailed information about the APIs in the Camunda documentation website. Here is the link to the documentation: Camunda Documentation . this API works and for self managed.

For example, if you are looking for information about the “get task” method, you can refer to the documentation specifically for the tasklist API REST controller. Here is the link to the documentation page that explains the “get task” method: Tasklist API REST - Get Task


I’m running all camunda self managed in docker
curl -X ‘GET’
‘http://{host}/v1/tasks/{taskId}’
-H ‘accept: application/json’
-H ‘Cookie: TASKLIST-SESSION={tasklistSessionId}’
here what should be the hostId and how to get tasklistSessionId