Sep 20, 2024
Delete a user profile
Deletes a user profile.
The response includes a date and time when the user profile can safely be considered deleted.
Usage
Required ACL:
recommendation
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Personalization;
var client = new PersonalizationClient(
new PersonalizationConfig(
"ALGOLIA_APPLICATION_ID",
"ALGOLIA_API_KEY",
"ALGOLIA_APPLICATION_REGION"
)
);
var response = await client.DeleteUserProfileAsync("UserToken");
Did you find this page helpful?