How to turn prefix in events

when I post events from scheduler using dataprocessor, it is prepending id to event values. How to get rid of to to bind to spring controller

thx

dp.setTransactionMode(“POST”); did not help

It must be

dp.setTransactionMode("POST", false);

and place it after dp.init