Skip to main content
GET
/
v1
/
events
List webhook events
curl --request GET \
  --url http://127.0.0.1:8787/v1/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "trigger_type": "verification_session",
      "trigger_id": "<string>",
      "created_at": "<string>",
      "deliveries": [
        {
          "id": "<string>",
          "webhook_endpoint_id": "<string>",
          "status": "pending",
          "last_status_code": 123,
          "attempt_count": 123,
          "last_attempt_at": "<string>"
        }
      ]
    }
  ],
  "error": {},
  "pagination": {
    "limit": 10,
    "has_more": false,
    "next_cursor": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kayle.id/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Webhooks:Events:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
string

Filter events by type (e.g. "verification.attempt.succeeded").

created_from
string<date-time>

Return events created at or after this ISO 8601 timestamp.

created_to
string<date-time>

Return events created at or before this ISO 8601 timestamp.

limit
integer

Maximum number of events to return. Defaults to 10 if not specified.

Required range: 1 <= x <= 100
starting_after
string

Cursor of the last item from the previous page. When provided, the next page of results will be returned.

Response

Successful operation.

data
object[]
required
error
object
required
pagination
object
required