Aura Logo
AuraAPI Docs
OpenapiV1WebhooksDeliveries

List webhook delivery logs

Retrieve a paginated list of webhook delivery attempts for your organization.

Use Cases:

  • Monitor webhook delivery health
  • Debug failed deliveries
  • Audit delivery history

Filtering:

  • Filter by subscription_id to see deliveries for a specific subscription

Retention:

  • Delivery logs are retained for 30 days
GET
/v1/webhooks/deliveries

Query Parameters

subscription_id?string

Filter by webhook subscription ID

Formatuuid
limit?string

Number of results per page (max: 100)

Default"50"
cursor?string

Pagination cursor from previous response

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/webhooks/deliveries"
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "subscription_id": "550e8400-e29b-41d4-a716-446655440000",
      "event_type": "call.booked",
      "status": "success",
      "status_code": 200,
      "response_time_ms": 145,
      "error_message": null,
      "attempt_count": 1,
      "payload_size_bytes": 512,
      "created_at": "2026-03-21T08:00:00Z"
    }
  ],
  "pagination": {
    "next_cursor": "string",
    "has_more": true
  }
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}