Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaign_id}
/
webhooks
/
{webhook_id}
/
logs
/
{log_id}
/
retry
curl -X POST "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/webhooks/webhook-uuid-1/logs/log-uuid-1/retry" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "message": "Webhook retry queued",
  "data": {
    "log_id": "new-log-uuid",
    "original_log_id": "log-uuid-1"
  }
}

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 Campaign Webhook Delivery

Manually retry a failed campaign webhook delivery. Creates a new log entry for the retry — original log is preserved.

Endpoint

POST /api/v1/campaigns/{campaign_id}/webhooks/{webhook_id}/logs/{log_id}/retry

Path Parameters

campaign_id
string
required
Campaign UUID.
webhook_id
string
required
Webhook UUID.
log_id
string
required
Log UUID of the failed delivery.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl -X POST "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/webhooks/webhook-uuid-1/logs/log-uuid-1/retry" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "message": "Webhook retry queued",
  "data": {
    "log_id": "new-log-uuid",
    "original_log_id": "log-uuid-1"
  }
}