Skip to main content
POST
/
api
/
v1
/
agents
/
{agent_id}
/
webhooks
/
{webhook_id}
/
logs
/
{log_id}
/
retry
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"
{
  "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"
  }
}

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. 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

agent_id
string
required
Agent UUID.
webhook_id
string
required
Webhook UUID.
log_id
string
required
Log UUID of the failed delivery to retry.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

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"

Response

{
  "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"
  }
}

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).
{
  "success": false,
  "message": "Log cannot be retried",
  "code": "LOG_NOT_RETRIABLE"
}

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 to track the new attempt.