Hi team !!!
I have used the Camunda 8 Self Managed (Docker) and I would like to see the number of taskID in my environment (TaskList or Operate). How can I see the number of taskID in the process ??
Hi team !!!
I have used the Camunda 8 Self Managed (Docker) and I would like to see the number of taskID in my environment (TaskList or Operate). How can I see the number of taskID in the process ??
Is this question still open?
The answer seems to be in your other thread…
You can get a list of tasks related to the process with the following call: Task API | Camunda 8 Docs use TaskSearchRequest for a search
For example:
POST
curl --location 'https://bru-2.tasklist.camunda.io/84d49f1b-de85-4c38-a68b-50d7c2139d40/v1/tasks/search' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>
--header 'Content-Type: application/json' \
--data '{
"processInstanceKey": "4503599654639256"
}'
Thanks @Alex_Voloshyn !!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.