Camunda Api

How Can Update UserId To This Table public.act_hi_op_log ?
>> i want to update userId In history_op_log through camunda Api And i searched some of them Apis but is not available for setUserId.

Hi @prakash,

if the user has logged in before (i.e. using the Camunda Tasklist), the column will be filled.

The login is implemented calling identityService.setAuthenticatedUserId(): https://docs.camunda.org/javadoc/camunda-bpm-platform/7.12/org/camunda/bpm/engine/IdentityService.html#setAuthenticatedUserId-java.lang.String-

Hope this helps, Ingo