> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobula.io/llms.txt
> Use this file to discover all available pages before exploring further.

# RetrySettingsInput

> Optional retry policy supplied when creating a webhook.

### TypeScript shape

```ts theme={null}
interface RetrySettingsInput {
  maxTimeElapsed?: number | null;
  minRetryDelay?: number | null;
  maxRetryDelay?: number | null;
  maxRetries?: number | null;
}
```

Defaults applied when omitted: `maxRetries=2`, `minRetryDelay=1`, `maxRetryDelay=30`, `maxTimeElapsed=300`.

<ResponseField name="maxTimeElapsed" type="Int">Max delivery window (seconds).</ResponseField>
<ResponseField name="minRetryDelay" type="Int">Minimum delay between retries (seconds).</ResponseField>
<ResponseField name="maxRetryDelay" type="Int">Maximum delay between retries (seconds).</ResponseField>
<ResponseField name="maxRetries" type="Int">Maximum number of retry attempts.</ResponseField>
