Delete user token

Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see Delete a user profile in the Personalization API.

Usage

1
2
3
4
5
6
7
8
9
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Insights;

var client = new InsightsClient(
  new InsightsConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION")
);

await client.DeleteUserTokenAsync("test-user-1");
Did you find this page helpful?