Jira Search can also be used to find issue signatures in various states.
Advanced Searches using eSign Custom Fields
Example #1: Signatures Started but not yet Finalized
project = "DEMO" and "Signature Count" > 0 and "Signatures Finalized" is empty
Example #2: Signatures Finalized since the beginning of the month
project = "DEMO" and "Signatures Finalized" >= startOfMonth()
Example #3: Issues that have not been signed
project = "DEMO" and "Signed On" is empty
JQL Search
Users can utilize JQL search keywords to search for pending signatures (by User or Count). This will allow administrators to configuring scheduled Jira filters to find issues with pending signatures and send periodic reminders to the Invited users.
# Example: Find issues where the current user has incomplete signatures Status != 'Closed' and eSignPendingUsers = currentUser() # Example: Find open issues with pending signatures Status = 'Open' and eSignPendingCount > 0