Api clients
/
JavaScript
/
V3
/
Methods
Mar. 31, 2022
Viewed Object IDs | JavaScript API Client V3 (Deprecated)
This version of the JavaScript API client has been deprecated in favor of the latest version of the JavaScript API client.
Required API Key: any key with the
settings
ACL
About this method# A
Send a view event to capture clicked items.
Examples# A
Edit
Copy
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
$insights = Algolia\AlgoliaSearch\InsightsClient::create(
'AJ0P3S7DWQ',
'90dfaaf5755e694f341fe68f6e41a6d4'
);
$insights->user("userToken")->viewedObjectIDs(
'your_event_name',
'your_index_name',
[
'objectID1',
'objectID2'
]
);
Parameters# A
userToken
# |
type: string
Required
A user identifier. Format: alpha numeric string [a-zA-Z0-9_-] Length: between 1 and 64 characters. |
eventName
# |
type: string
Required
Name of the event. Format: any ascii char except control characters. Length: between 1 and 64 characters. |
indexName
# |
type: string
Required
Name of the index related to the view. |
objectIDs
# |
type: string[]
Required
A list of objectIDs. Limited to 20 objectIDs. |
Response# A
No response.
Did you find this page helpful?