Please note that this feature is currently in beta. We may change or remove it at any time without notice.
You can specify a regular expression (regex) to extract a specific portion of the subject text and use it for your matching criteria.
Example
Let's say your product sends system-generated emails to your support address based on different user events. These emails end up as tickets in Zendesk. The subject in these tickets could look like the following:
- [App] ID: 12345 (signed up)
- [App] ID: 12345 (approved)
- [Website] ID: 12345 (canceled)
As you can see, they all contain a user ID and have a similar structure. Assuming user ID is always a number, you can use the following regex:
ID: \d+
This regex will extract the user ID prefixed with "ID: " from the subject. With this matching criteria, tickets will only be merged if they have the same user ID in the subject. If the user ID is not found in either ticket, both tickets will be left untouched.
Notes
- Regex is currently only available for the Subject field.
- Auto Merge only supports the JavaScript syntax for regex.
- Omit the leading and trailing forward slashes (for example, use
ID: \d+
, not/ID: \d+/
). - Only the first regex match (when scanning from left to right) is used.