API Reference / API Parameters / clickAnalytics
Type: boolean
Engine default: false
Parameter syntax
'clickAnalytics' => true|false

Can be used in these methods:

About this parameter

Enable the Click Analytics feature.

The effect of setting clickAnalytics to true is to add a queryID to the search response. This queryID can be used in Click and Conversion Analytics.

Usage notes

  • This parameter does not, on its own, add any new analytics data; it only ensures that a queryID is returned. With that queryID, it will be up to you then to choose the best events to send as clicks and conversions. Learn more in the guide on sending events.

Examples

1
2
3
$res = $index->search('query', [
  'clickAnalytics' => false
]);
1
2
3
$res = $index->search('query', [
  'clickAnalytics' => true
]);
Did you find this page helpful?