Docs / Guides / Configuring Retry Policies
10 min readIntermediate

CONFIGURING RETRY POLICIES

Customize how PatternHooks handles failed webhook deliveries.

DEFAULT RETRY BEHAVIOR

Failed deliveries retry up to 8 times over 24 hours with exponential backoff.

CUSTOM POLICIES

await ph.endpoint.update(appId, endpointId, { retryPolicy: { maxAttempts: 5, initialInterval: 10, maxInterval: 3600 } });
All Guides Documentation