cancel
Showing results for 
Search instead for 
Did you mean: 

Retrieve filled in form of historic task instance using rest api

nicolasfranck
Champ in-the-making
Champ in-the-making
Is it possible to retrieve the filled in form of a historic task instance?

This can be handy to track down decisions.
4 REPLIES 4

frederikherema1
Star Contributor
Star Contributor
You can use HistoricFormProperty (history service, createHistoricDetailQuery()), which do contain property ID/value and task id. Make sure the history service is set to full. You can query based on the right process/task and see what value was submitted back then.

nicolasfranck
Champ in-the-making
Champ in-the-making
Thanks,

I remember to set the history service to full (instead of audit). I suspect that this "HistoricFormProperty" can be found
in the "taskVariables" of a historic-task-instance in the rest-api?

frederikherema1
Star Contributor
Star Contributor
Right, you wanted to use the REST-api. Take a look at 'GET history/historic-detail' in the user guide, which allows you to filter out the form-properties for a task/process-instance start form…

nicolasfranck
Champ in-the-making
Champ in-the-making
Thanks for your quick reply!