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

# Retry Webhook Delivery

> Manually retry a failed webhook delivery

# Retry Webhook Delivery

Manually retry a failed webhook delivery. The retry creates a new log entry — the original log is preserved.

## Endpoint

```
POST /api/v1/agents/{agent_id}/webhooks/{webhook_id}/logs/{log_id}/retry
```

## Path parameters

<ParamField path="agent_id" type="string" required>Agent UUID.</ParamField>
<ParamField path="webhook_id" type="string" required>Webhook UUID.</ParamField>
<ParamField path="log_id" type="string" required>Log UUID of the failed delivery to retry.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  curl -X POST "https://app.talkover.ai/api/v1/agents/agent-uuid/webhooks/webhook-uuid/logs/log-uuid/retry" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Webhook retry queued successfully",
    "data": {
      "log_id": "new-log-uuid",
      "original_log_id": "log-uuid",
      "queued_at": "2024-01-15T11:30:00Z"
    }
  }
  ```
</ResponseExample>

## Error responses

### 422 — Cannot Retry

Returned when the log is not in a retriable state (e.g., already succeeded, too old, or webhook is disabled).

<ResponseExample>
  ```json theme={null}
  {
    "success": false,
    "message": "Log cannot be retried",
    "code": "LOG_NOT_RETRIABLE"
  }
  ```
</ResponseExample>

## Notes

* Retries respect the webhook's current configuration (URL, headers, timeout) — not the configuration at the time of the original attempt.
* Use [List Webhook Delivery Logs](/api-reference/endpoints/list-webhook-logs) to track the new attempt.
