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

Can be used in these methods:
search, browseObjects, searchForFacetValues, generateSecuredApiKey, addApiKey, updateApiKey

About this parameter# A

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# A

Disable click analytics for the current search#

1
2
3
$res = $index->search('query', [
  'clickAnalytics' => false
]);

Enable click analytics for the current search#

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