Sep 20, 2024
Define the personalization strategy
Creates a new personalization strategy.
Usage
Required ACL:
recommendation
Copy
1
2
3
4
5
6
7
8
9
10
import { algoliasearch } from 'algoliasearch';
// Replace 'us' with your Algolia Application Region
const client = algoliasearch('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY').initPersonalization({ region: 'us' });
const response = await client.setPersonalizationStrategy({
eventsScoring: [{ score: 42, eventName: 'Algolia', eventType: 'click' }],
facetsScoring: [{ score: 42, facetName: 'Event' }],
personalizationImpact: 42,
});
Did you find this page helpful?