This server event occurs when a COLLECTION_USER
user deletes a collection.
This event contains the following fields:
Field | Description |
---|---|
collection |
An object containing information about the collection. |
id |
The collection's identifier. |
name |
The collection's name. |
searchQuery |
Information about the query if the collection was created by saving the results of a search. null if the collection was not created this way. |
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 . |
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:
[
{
"collection": {
"id": "d98bc2b7-af64-410c-965c-face233569b8",
"name": "FT HowTos",
"searchQuery": {
"terms": "",
"facets": [
{
"key": "Product",
"values": [
"Fluid Topics"
]
},
{
"key": "Category",
"values": [
"How To"
]
}
],
"searchType": "EVERYWHERE"
}
}
}
]