- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to pull a list of alerts which is having specific word?
iqbalintouch
Path Finder
04-16-2020
02:10 PM
Hi,
How can I pull a list or report of alerts which is having any of these specific words?
"purchase" OR "search" OR "booking"
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

memarshall63
Communicator
04-16-2020
06:25 PM
Do you mean something like this?:
|rest /servicesNS/-/-/saved/searches
| table title eai:acl.app eai:acl.owner actions search
So maybe with your criteria, it'd be:
|rest /servicesNS/-/-/saved/searches
| table title eai:acl.app eai:acl.owner actions search
| where title LIKE "%Purchase%" OR title LIKE "%search%" OR title LIKE "%booking%"
Alerts generally have actions so you could add a filter for those, or there may be other ways to do it:
|rest /servicesNS/-/-/saved/searches
| search NOT actions=""
| table title eai:acl.app eai:acl.owner actions search
| where title LIKE "%Purchase%" OR title LIKE "%search%" OR title LIKE "%booking%"
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
04-16-2020
02:22 PM
