Interface BulkServiceAsync
-
- All Implemented Interfaces:
public interface BulkServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceBulkServiceAsync.WithRawResponseA view of BulkServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract BulkServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. CompletableFuture<BulkOperation>delete(BulkDeleteParams params)Deletes multiple users in a single operation. abstract CompletableFuture<BulkOperation>delete(BulkDeleteParams params, RequestOptions requestOptions)CompletableFuture<BulkOperation>identify(BulkIdentifyParams params)Identifies multiple users in a single operation. abstract CompletableFuture<BulkOperation>identify(BulkIdentifyParams params, RequestOptions requestOptions)CompletableFuture<BulkOperation>setPreferences(BulkSetPreferencesParams params)Sets preferences for multiple users in a single operation. abstract CompletableFuture<BulkOperation>setPreferences(BulkSetPreferencesParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract BulkServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
delete
CompletableFuture<BulkOperation> delete(BulkDeleteParams params)
Deletes multiple users in a single operation. Accepts up to 100 user IDs to delete and returns a bulk operation that can be queried for progress.
-
delete
abstract CompletableFuture<BulkOperation> delete(BulkDeleteParams params, RequestOptions requestOptions)
-
identify
CompletableFuture<BulkOperation> identify(BulkIdentifyParams params)
Identifies multiple users in a single operation. Allows creating or updating up to 100 users in a single batch with various properties, preferences, and channel data.
-
identify
abstract CompletableFuture<BulkOperation> identify(BulkIdentifyParams params, RequestOptions requestOptions)
-
setPreferences
CompletableFuture<BulkOperation> setPreferences(BulkSetPreferencesParams params)
Sets preferences for multiple users in a single operation. Supports either setting the same preferences for multiple users or specific preferences for each user.
-
setPreferences
abstract CompletableFuture<BulkOperation> setPreferences(BulkSetPreferencesParams params, RequestOptions requestOptions)
-
-
-
-