Skip to main content
GET
/
api
/
v1
/
campaigns
/
{campaign_id}
/
webhooks
/
{webhook_id}
/
logs
curl "https://app.talkover.ai/api/v1/campaigns/campaign-uuid/webhooks/webhook-uuid-1/logs" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": [
    {
      "id": "log-uuid-1",
      "event": "campaign.started",
      "attempt": 1,
      "status": "success",
      "http_status": 200,
      "duration_ms": 142,
      "delivered_at": "2024-01-15T11:00:01Z",
      "created_at": "2024-01-15T11:00:00Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total": 47
  }
}

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.

List Campaign Webhook Logs

List delivery attempts for a campaign webhook, including HTTP status, response, attempt number, and timing. Same shape as List Webhook Delivery Logs.

Endpoint

GET /api/v1/campaigns/{campaign_id}/webhooks/{webhook_id}/logs

Path Parameters

campaign_id
string
required
Campaign UUID.
webhook_id
string
required
Webhook UUID.

Query Parameters

per_page
integer
Items per page. Range: 1100. Default: 25.
page
integer
Default: 1.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

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

Response

{
  "success": true,
  "data": [
    {
      "id": "log-uuid-1",
      "event": "campaign.started",
      "attempt": 1,
      "status": "success",
      "http_status": 200,
      "duration_ms": 142,
      "delivered_at": "2024-01-15T11:00:01Z",
      "created_at": "2024-01-15T11:00:00Z"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total": 47
  }
}