This server event occurs when a SAVED_SEARCH_USER
user saves a search.
This event contains the following fields:
Field | Description |
---|---|
savedSearch |
An object containing information about the saved search. |
id |
The saved search's identifier. |
name |
The saved search's name. |
searchQuery |
Information about the query. |
terms |
The terms included in the query. |
facets |
The list of facets applied at query time. Can be null . |
lastUpdate |
The selected period at query time. Can be LAST_WEEK , LAST_MONTH , LAST_YEAR , CUSTOM , or null . |
searchType |
The search type. Can be EVERYWHERE , TITLE_ONLY , NONE , or null . |
alert |
Information about whether an alert was configured for the search. |
Since this event originates from the server and not the web application, it is not possible to listen to it.
A table for the most common fields is in Analytics events.
Example:
[
{
"savedSearch": {
"id": "dd65d1c6-a3cb-4818-9a19-3cffbd426a6e",
"name": "Alert on Fluid Topics integration guide modification",
"searchQuery": {
"terms": "",
"facets": [
{
"key": "ft:publicationId",
"values": [
"Cixf6Ly_Kc5SpgUBf1vV_Q"
]
}
],
"searchType": "EVERYWHERE"
},
"alert": false
}
}
]