You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algoliasearch/Clients/InsightsClient.cs
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -175,6 +175,9 @@ object CustomPut(
175
175
/// <summary>
176
176
/// 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.
177
177
/// </summary>
178
+
///
179
+
/// Required API Key ACLs:
180
+
/// - deleteObject
178
181
/// <param name="userToken">User token for which to delete all associated events.</param>
179
182
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
180
183
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
@@ -191,6 +194,9 @@ Task DeleteUserTokenAsync(
191
194
/// <summary>
192
195
/// 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. (Synchronous version)
193
196
/// </summary>
197
+
///
198
+
/// Required API Key ACLs:
199
+
/// - deleteObject
194
200
/// <param name="userToken">User token for which to delete all associated events.</param>
195
201
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
196
202
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
@@ -207,6 +213,9 @@ void DeleteUserToken(
207
213
/// <summary>
208
214
/// Sends a list of events to the Insights API. You can include up to 1,000 events in a single request, but the request body must be smaller than 2 MB.
209
215
/// </summary>
216
+
///
217
+
/// Required API Key ACLs:
218
+
/// - search
210
219
/// <param name="insightsEvents"></param>
211
220
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
212
221
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Sends a list of events to the Insights API. You can include up to 1,000 events in a single request, but the request body must be smaller than 2 MB. (Synchronous version)
225
234
/// </summary>
235
+
///
236
+
/// Required API Key ACLs:
237
+
/// - search
226
238
/// <param name="insightsEvents"></param>
227
239
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
228
240
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
0 commit comments