API Reference / API Methods / Insights / Converted Filters
Required API Key: any key with the settings ACL
Method signature
$insights->user(string userToken)->convertedFilters(
  string eventName,
  string indexName,
  array filters
)

About this method # A

Send a conversion event to capture the filters a user uses when converting.

Examples # A

1
2
3
4
5
6
7
8
9
10
$insights = Algolia\AlgoliaSearch\InsightsClient::create(
  'AJ0P3S7DWQ',
  '90dfaaf5755e694f341fe68f6e41a6d4'
);

$insights->user("user-1")->convertedFilters(
  'your_event_name',
  'your_index_name',
  ['brand:apple']
);

Parameters # A

userToken #
type: string
Required

A user identifier.

Format: alpha numeric string [a-zA-Z0-9_-=/+]{1,128}

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 filters.

Format: ${attr}${op}${value} e.g. brand:apple.

Limited to 10 filters.

Response # A

No response

Did you find this page helpful?
PHP v3