You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specs/analytics/paths/click/getAverageClickPosition.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,12 @@ get:
8
8
description: |
9
9
Retrieves the average click position of your search results, including a daily breakdown.
10
10
11
-
The average click position is the average of all clicked search results' positions.
11
+
The average click position is the average of all clicked search result positions.
12
12
For example, if users only ever click on the first result for any search, the average click position is 1.
13
13
By default, the analyzed period includes the last eight days including the current day.
14
+
15
+
An average of `null` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
16
+
The average is `null` until Algolia receives at least one click event.
Copy file name to clipboardExpand all lines: specs/analytics/paths/click/getClickPositions.yml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ get:
9
9
Retrieves the positions in the search results and their associated number of clicks.
10
10
11
11
This lets you check how many clicks the first, second, or tenth search results receive.
12
+
13
+
An average of `0` when `clickAnalytics` is enabled means Algolia didn't receive any [click events](https://www.algolia.com/doc/guides/sending-events/getting-started/) for the queries.
Copy file name to clipboardExpand all lines: specs/analytics/paths/click/getPurchaseRate.yml
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,18 @@ get:
6
6
- analytics
7
7
summary: Retrieve purchase rate
8
8
description: |
9
-
Retrieves the purchase rate for all of your searches with at least one purchase event, including a daily breakdown.
9
+
Retrieves the purchase rate for all your searches with at least one purchase event, including a daily breakdown.
10
10
11
11
By default, the analyzed period includes the last eight days including the current day.
12
+
13
+
The rate is the number of purchase conversion events divided by the number of tracked searches.
14
+
A search is tracked if it returns a query ID (`clickAnalytics` is `true`).
15
+
This differs from the response's `count`, which shows the overall number of searches, including those where `clickAnalytics` is `false`.
16
+
17
+
**There's a difference between a 0 and null purchase rate when `clickAnalytics` is enabled:**
18
+
19
+
- **Null** means there were no queries: since Algolia didn't receive any events, the purchase rate is null.
20
+
- **0** mean there _were_ queries but no [purchase conversion events](https://www.algolia.com/doc/guides/sending-events/getting-started/) were received.
0 commit comments