Is there a way to retrieve the edit history for a submission on a self hosted server?

Hi @Josh is there a way to retrieve the edit history for a submission on a self hosted server?

@ks_1, you can access the submission history on your own instance, but there’s currently no API built around it yet. To view this, in the kobocat container enter the Django shell and use the InstanceHistory object to list submission edit histories.

root@kobocat:/srv/src/kobocat# ./manage.py shell_plus
In [1]: InstanceHistory.objects.all()
Out[1]: <QuerySet [<InstanceHistory: InstanceHistory object (1)>]>
1 Like