Api clients
/
Ruby
/
V1
/
Methods
Jan. 09, 2023
Converted Filters | Ruby API Client V1 (Deprecated)
This version of the Ruby API client has been deprecated in favor of the latest version of the Ruby API client.
Required API Key: any key with the
settings
ACL
About this method
Send a conversion event to capture the filters a user uses when converting.
Examples
Copy
1
2
3
4
5
6
7
8
9
10
$insights = Algolia\AlgoliaSearch\InsightsClient::create(
'YourApplicationID',
'YourSearchOnlyAPIKey'
);
$insights->user("user-1")->convertedFilters(
'your_event_name',
'your_index_name',
['brand:apple']
);
Parameters
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. It's best to follow the event naming guidelines. Format: any ASCII character except control characters. Length: between 1 and 64 characters. |
indexName
|
type: string
Required
Name of the index related to the conversion. |
filters
|
type: string[]
Required
A list of Format: Limited to 10 filters. |
Response
No response.
Did you find this page helpful?