Sep 20, 2024
Personalization API client
The Personalization API client is part of the algoliasearch-client-go
package.
To install it, run:
Copy
1
go get github.com/algolia/algoliasearch-client-go
To use the Personalization client, add this import to your files:
Copy
1
import "github.com/algolia/algoliasearch-client-go/v4/algolia/personalization"
To create an instance of the client:
Copy
1
2
3
4
5
client, err := personalization.NewClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", personalization.US)
if err != nil {
// The client can fail to initialize if you pass an invalid parameter.
panic(err)
}
Make sure to use the region that matches your Algolia application’s analytics region:
personalization.US
for the United States or personalization.EU
for Europe.
You can check your analytics region in the Infrastructure > Analytics section of the Algolia dashboard.
List of methods
Each method makes one request to the Personalization API.
Profiles
client.GetUserTokenProfile | Retrieve a user profile |
client.DeleteUserProfile | Delete a user profile |
Strategies
client.GetPersonalizationStrategy | Retrieve the personalization strategy |
client.SetPersonalizationStrategy | Define the personalization strategy |
Did you find this page helpful?