What is the Java API to retrieve the history of the process activities?

Hello everyone,

I have a question concerning the Camunda Rest API to get the history of the process activites.
The Rest endpoint is the following:

  /history/activity-instance/count

Can someone refer me to the corresponding Java API for this REST resource? Is it a public API?

Thank you.

https://docs.camunda.org/manual/7.13/reference/rest/history/activity-instance/

Get List

GET /history/activity-instance

Get List Count

GET /history/activity-instance/count

Get

GET /history/activity-instance/{id}

Get List (POST)

POST /history/activity-instance

Get List Count (POST)

POST /history/activity-instance/count

1 Like

Hi @mk08,

you can find the interface here:

and the implementation here:

Hope this helps, Ingo

1 Like