This server event occurs when a SAVED_SEARCH_USER
user deletes a saved 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 . Accepts the following values: VALUE , DATE , RANGE |
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.
- The
lastUpdate
field is deprecated. Information regarding the last update is included in theDATE
orRANGE
type of theft:lastEdition
facet.
A table for the most common fields is in Analytics events.
Example:
[
{
"savedSearch": {
"id": "legacy_saved_search_1aa07528-7d16-4bb5-90f5-9fbe8c5c8e28",
"name": "Category: \"Release Notes\"; Product: \"Fluid Topics\"",
"searchQuery": {
"terms": "",
"facets": [
{
"key": "Category",
"type": "VALUE",
"values": [
"Release Notes"
]
},
{
"key": "Product",
"type": "VALUE",
"values": [
"Fluid Topics"
]
},
{
"key": "ft:lastEdition",
"type": "DATE",
"dateValue": "LAST_MONTH"
},
{
"key": "FT_Version",
"type": "RANGE",
"from": "5.0",
"to": "5.1"
}
],
"searchType": "EVERYWHERE"
},
"alert": true
}
}
}
]