Interface DeliveryServiceAsync
-
- All Implemented Interfaces:
public interface DeliveryServiceAsyncWebhook endpoint management
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceDeliveryServiceAsync.WithRawResponseA view of DeliveryServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract DeliveryServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract DeliveryServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<Void> retrieve(String id)
Get webhook delivery
-
retrieve
CompletableFuture<Void> retrieve(String id, DeliveryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Void> retrieve(String id, DeliveryRetrieveParams params)
-
retrieve
abstract CompletableFuture<Void> retrieve(DeliveryRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Void> retrieve(DeliveryRetrieveParams params)
-
retrieve
CompletableFuture<Void> retrieve(String id, RequestOptions requestOptions)
-
list
CompletableFuture<Void> list()
Returns delivery attempts for the organization, newest first. Filter by endpoint_id or status to narrow results.
-
list
abstract CompletableFuture<Void> list(DeliveryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<Void> list(DeliveryListParams params)
-
list
CompletableFuture<Void> list(RequestOptions requestOptions)
-
replay
CompletableFuture<Void> replay(String id)
Re-sends the original event to its endpoint. The payload is reconstructed from the delivery record (same eventId, eventType, and occurred_at). Replay deliveries include a Case.dev replay marker header so receivers can distinguish replays from first-time deliveries. Uses the endpoint's current signing secret — not the one in force at the original delivery time.
-
replay
CompletableFuture<Void> replay(String id, DeliveryReplayParams params, RequestOptions requestOptions)
-
replay
CompletableFuture<Void> replay(String id, DeliveryReplayParams params)
-
replay
abstract CompletableFuture<Void> replay(DeliveryReplayParams params, RequestOptions requestOptions)
-
replay
CompletableFuture<Void> replay(DeliveryReplayParams params)
-
replay
CompletableFuture<Void> replay(String id, RequestOptions requestOptions)
-
-
-
-