Control who can see survey results per survey
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 05:42 AM
Apologies if this is the wrong board. Hopefully this is a simple answer. Is it possible to control who can see survey results per survey? For example, we have one ITSM survey that goes out when incidents are closed, and another HR survey that goes out when HR cases are closed. Is it possible to control who can see results of each survey independently?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 06:11 AM
@AverageAdmin search for "Access control" or "ACL":
I don't know the exact table, but when you open one IT survey and one HR survey, you will see it in the URL, accordingly you can check if it is one and the same table, then you need to apply some conditions (e.g. role or assignment group), if it is two separated tables then it will be easier, you grant the roles accordingly:
Let me know if you want to discuss something in more details
/* If my response wasn’t a total disaster ↙️ ⭐ drop a Kudos or Accept as Solution ✅ ↘️ Cheers! */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 06:17 AM
Thank you. As far as I know all survey responses go to the same table (asmt_metric_result), so I don't know how to modify ACL's at the table level that would accomplish my goal. That is why I was wondering if there was something at the actual survey level that you could specify who has access to that survey's results.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 06:20 AM
Hi @AverageAdmin ,
You can create a new ACL on: asmt_assessment_instance table.
Operation will be Read.
for example: In condition you can restrict acces by specific survey.
gs.getUserID() == current.assigned_to || current.metric_type.name == "YOUR SURVEY"
If my response helped please mark it correct and close the thread so that it benefits future readers.
Regards,
Mohammad Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 06:39 AM
Will that affect only the survey responses? Or does that control who has the ability to fill out the survey as well?