User operation logs missing from API actions

Hi,

I’m trying to get the user-operation logs through the rest API. I’ve got the history level set to full and can see claim actions for tasks that I claim in the cockpit. However, when I claim or assign tasks through the API I do not see anything in the user-operation log endpoint.

I’m currently using the Spring Boot Camunda starter and have the history level set to FULL . I’m assuming that the history event stream isn’t hooked up to the API events for some reason. Is there some configuration that I need to do to have the events published from the API or save the events from the stream to the history database?

I was able to figure out the issue. Without authentication turned on user-operations are not saved. This is mentioned in the documentation for the history engine setRestrictUserOperationLogToAuthenticatedUsers=false on the process Engine configuration will resolve.

1 Like