Secure Form with JQL

To retrieves all the issues in which Secure Forms is filled and submitted, you can use the concept of issue properties with JQL. This issue property works fine with JQL queries and It will show you those issue where you have ‘view’ permission.

To get this data, just go to JQL and run the below query and it will return all issues where secure form is submitted and have a property with SecureForm status=submitted. You can also add it up with other JQL operators to make your search better.

issue.property[SecureForm].Status ~ 'submitted'

Example: If you want to filter out all the issues that is created today and have Secure Form Submitted then this JQL Query can help you.