{"type":"ProcessEngineException","message":"Cannot deserialize object in variable 'cuitsInfo': SPIN/JACKSON-JSON-01007 Cannot construct java type from string 'com.credicuotas.api.model.bpm.QuizDTO'"}
no it is not possible. But you can do it by yourself.
Create a new REST resource for example /history/variable-instance/compact, that reads the historic variables and put them into a new DTO class.
That new DTO for example called NewHistoricVariableDTO contains only the properties value, type and valueInfo.
After the creation, of the NewHistoricVariableDTO objects, put them in a map of variables with the variable name as key and return them. The result can be for example look like this:
Yes, but it throws an exception because that variable is not correctly serialized. But dont worry, I did what you detail before and works perfectly. Thanks !