Activity
Report document activity
Report user activity that occurs on indexed documents such as viewing or editing. This signal improves search quality.
post/rest/api/v1/activity
Request body
Example request
{
"events": [
{
"url": "https://example.com/",
"action": "HISTORICAL_VIEW",
"timestamp": "2000-01-23T04:56:07.000Z"
},
{
"url": "https://example.com/search?q=query",
"action": "SEARCH",
"timestamp": "2000-01-23T04:56:07.000Z",
"params": {
"query": "query"
}
},
{
"url": "https://example.com/",
"action": "VIEW",
"timestamp": "2000-01-23T04:56:07.000Z",
"params": {
"duration": 20,
"referrer": "https://example.com/document"
}
}
]
}Response
OK