Skip to main content

RetryConfig

Retry strategy, attempt limit, and interval for failed webhook deliveries.

Usage profiles​

UsageFields and validation
In responsesView fields

In responses​

API JSON uses JSON field names (camelCase).

FieldTypePresenceMeaning
strategystring (RETRY_STRATEGY_LINEAR, RETRY_STRATEGY_EXPONENTIAL) or integer (int32)OptionalWebhook retry strategy selected in the provider configuration.
retryCountinteger (int32)OptionalMaximum retry count configured for webhook delivery. Minimum: -2147483648. Maximum: 2147483647.
intervalSecondsinteger (int32)OptionalDelay between webhook delivery retries, in seconds. Minimum: -2147483648. Maximum: 2147483647.

Values of strategy​

Backoff strategy applied between webhook delivery attempts.

ValueNo.FormMeaning
RETRY_STRATEGY_LINEAR1CanonicalRetry using the configured linear interval strategy.
RETRY_STRATEGY_EXPONENTIAL2CanonicalIncrease the delay between retries using exponential backoff.

Where used​

ReferenceRelationship
Create a webhook endpointPOST /api/v1/webhooks/create-endpoint
Create a webhook subscriptionPOST /api/v1/webhooks/create-subscription
List webhook subscriptionsPOST /api/v1/webhooks/list-subscriptions
SubscriptionNested in model

Download the public reference contract.

Document: DOC-API-MODEL-retry-config.