Retrieve filled in form of historic task instance using rest api

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2014 08:47 AM
Is it possible to retrieve the filled in form of a historic task instance?
This can be handy to track down decisions.
This can be handy to track down decisions.
Labels:
- Labels:
-
Archive
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-30-2014 10:39 AM
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.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-31-2014 02:38 AM
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?
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?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-31-2014 03:10 AM
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…

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-31-2014 03:55 AM
Thanks for your quick reply!
