Interface BulkService.WithRawResponse
-
- All Implemented Interfaces:
public interface BulkService.WithRawResponseA view of BulkService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<BulkOperation>delete(BulkDeleteParams params)Returns a raw HTTP response for post /v1/users/bulk/delete, but is otherwise the same as BulkService.delete.abstract HttpResponseFor<BulkOperation>delete(BulkDeleteParams params, RequestOptions requestOptions)HttpResponseFor<BulkOperation>identify(BulkIdentifyParams params)Returns a raw HTTP response for post /v1/users/bulk/identify, but is otherwise the same as BulkService.identify.abstract HttpResponseFor<BulkOperation>identify(BulkIdentifyParams params, RequestOptions requestOptions)HttpResponseFor<BulkOperation>setPreferences(BulkSetPreferencesParams params)Returns a raw HTTP response for post /v1/users/bulk/preferences, but is otherwise the same as BulkService.setPreferences.abstract HttpResponseFor<BulkOperation>setPreferences(BulkSetPreferencesParams params, RequestOptions requestOptions)-
-
Method Detail
-
delete
@MustBeClosed() HttpResponseFor<BulkOperation> delete(BulkDeleteParams params)
Returns a raw HTTP response for
post /v1/users/bulk/delete, but is otherwise the same as BulkService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<BulkOperation> delete(BulkDeleteParams params, RequestOptions requestOptions)
-
identify
@MustBeClosed() HttpResponseFor<BulkOperation> identify(BulkIdentifyParams params)
Returns a raw HTTP response for
post /v1/users/bulk/identify, but is otherwise the same as BulkService.identify.
-
identify
@MustBeClosed() abstract HttpResponseFor<BulkOperation> identify(BulkIdentifyParams params, RequestOptions requestOptions)
-
setPreferences
@MustBeClosed() HttpResponseFor<BulkOperation> setPreferences(BulkSetPreferencesParams params)
Returns a raw HTTP response for
post /v1/users/bulk/preferences, but is otherwise the same as BulkService.setPreferences.
-
setPreferences
@MustBeClosed() abstract HttpResponseFor<BulkOperation> setPreferences(BulkSetPreferencesParams params, RequestOptions requestOptions)
-
-
-
-