Interface BulkService
-
- All Implemented Interfaces:
public interface BulkService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceBulkService.WithRawResponseA view of BulkService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract BulkService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. BulkOperationdelete(String collection, BulkDeleteParams params)Bulk deletes objects from the specified collection. BulkOperationdelete(String collection, BulkDeleteParams params, RequestOptions requestOptions)BulkOperationdelete(BulkDeleteParams params)abstract BulkOperationdelete(BulkDeleteParams params, RequestOptions requestOptions)BulkOperationaddSubscriptions(String collection, BulkAddSubscriptionsParams params)Add subscriptions for all objects in a single collection. BulkOperationaddSubscriptions(String collection, BulkAddSubscriptionsParams params, RequestOptions requestOptions)BulkOperationaddSubscriptions(BulkAddSubscriptionsParams params)abstract BulkOperationaddSubscriptions(BulkAddSubscriptionsParams params, RequestOptions requestOptions)BulkOperationset(String collection, BulkSetParams params)Bulk sets up to 1,000 objects at a time in the specified collection. BulkOperationset(String collection, BulkSetParams params, RequestOptions requestOptions)BulkOperationset(BulkSetParams params)abstract BulkOperationset(BulkSetParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract BulkService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
delete
BulkOperation delete(String collection, BulkDeleteParams params)
Bulk deletes objects from the specified collection.
-
delete
BulkOperation delete(String collection, BulkDeleteParams params, RequestOptions requestOptions)
-
delete
BulkOperation delete(BulkDeleteParams params)
-
delete
abstract BulkOperation delete(BulkDeleteParams params, RequestOptions requestOptions)
-
addSubscriptions
BulkOperation addSubscriptions(String collection, BulkAddSubscriptionsParams params)
Add subscriptions for all objects in a single collection. If a subscription for an object in the collection already exists, it will be updated. This endpoint also handles /managing-recipients/identifying-recipients#inline-identifying-recipients for the
recipientfield.
-
addSubscriptions
BulkOperation addSubscriptions(String collection, BulkAddSubscriptionsParams params, RequestOptions requestOptions)
-
addSubscriptions
BulkOperation addSubscriptions(BulkAddSubscriptionsParams params)
-
addSubscriptions
abstract BulkOperation addSubscriptions(BulkAddSubscriptionsParams params, RequestOptions requestOptions)
-
set
BulkOperation set(String collection, BulkSetParams params)
Bulk sets up to 1,000 objects at a time in the specified collection.
-
set
BulkOperation set(String collection, BulkSetParams params, RequestOptions requestOptions)
-
set
BulkOperation set(BulkSetParams params)
-
set
abstract BulkOperation set(BulkSetParams params, RequestOptions requestOptions)
-
-
-
-