API Reference / API Methods / Insights / Converted Object IDs After Search

Converted Object IDs After Search

Required API Key: any key with the settings ACL
Method signature
insights.user(String userToken).converted_object_ids_after_search(
  String eventName,
  String indexName,
  Array objectIDs,
  String queryID
)

About this method # A

You’re currently reading the Ruby API client v2 documentation. Check the migration guide to learn how to upgrade from v1 to v2. You can still access the v1 documentation.

Send a conversion event to capture a query and its clicked items.

Note that unlike convertedObjectIDs, convertedObjectIDsAfterSearch takes a queryID. Therefore, the captured event goes towards both Personalization and Click and Conversion Analytics. convertedObjectIDs only goes towards personalization.

You can find examples of click, conversion, and view events in the Search Analytics section.

Examples # A

1
2
3
4
5
6
7
8
insights = Algolia::Insights::Client.create('AJ0P3S7DWQ', '90dfaaf5755e694f341fe68f6e41a6d4')

insights.user('userToken').converted_object_ids_after_search(
  'your_event_name',
  'your_index_name',
  ['objectID1', 'objectID2'],
  'queryID'
)

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.

objectIDs #
type: string[]
Required

A list of objectIDs.

Limited to 20 objectIDs.

queryID #
type: string
Required

Algolia queryID that can be found in the search response when using clickAnalytics

format: hexadecimal string [a-f0-9]

length: 32 characters.

Response # A

No response

Did you find this page helpful?
Ruby v2