Client interviews should automatically notify you when a user completes their portion of the client interview. Public interviews are a bit trickier, but there are many ways to setup that kind of notification. With out of the box settings the best you can do is watching or following specific work items.
You could write a super easy PHP function that just sends a GET request to the API for the work group endpoint every 5 minutes or so. It would just count the number of work items in the work group. If the number of work items is greater than the number of work items previously counted, it could call a simple JavaScript function to email you the information about the each new work item.
Client interviews should automatically notify you when a user completes their portion of the client interview. Public interviews are a bit trickier, but there are many ways to setup that kind of notification. With out of the box settings the best you can do is watching or following specific work items.
Worth mentioning: there is also a Webhook that triggers whenever a work item is Finished. This would probably be another easy way to setup a listener application to notify you for public interviews. https://help.hotdocs.com/advance/cloud/current/admin/Using_the_New_Work_Item_Version_Complete_Webhook_to_Receive_Notifications.htm
You could write a super easy PHP function that just sends a GET request to the API for the work group endpoint every 5 minutes or so. It would just count the number of work items in the work group. If the number of work items is greater than the number of work items previously counted, it could call a simple JavaScript function to email you the information about the each new work item.