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"
{
  "data": [
    {
      "attempt_count": 1,
      "created_at": "2026-03-21T08:00:00Z",
      "error_message": null,
      "event_type": "call.booked",
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "payload_size_bytes": 512,
      "response_time_ms": 145,
      "status": "success",
      "status_code": 200,
      "subscription_id": "550e8400-e29b-41d4-a716-446655440000"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "string"
  },
  "success": true
}
{
  "code": "WEBHOOK_NOT_FOUND",
  "error": "Webhook subscription not found",
  "success": false
}