Skip to main content
GET
/
v2
/
notifications
/
webhooks
/
events
Get Webhook Events
curl --request GET \
  --url https://api.avenia.io:8443/v2/v2/notifications/webhooks/events \
  --header 'Authorization: Bearer <token>'
{
  "events": [
    {
      "id": "<string>",
      "subscription": "<string>",
      "dataId": "<string>",
      "data": {
        "status": "<string>",
        "level": "<string>"
      },
      "createdAt": "<string>"
    }
  ],
  "cursor": "<string>"
}

Get Webhook Events

GET request to /v2/notifications/webhooks/events

Authorizations

Authorization
string
header
required

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

Query Parameters

createdAfter
integer

Filter events created after timestamp

createdBefore
integer

Filter events created before timestamp

cursor
string

Cursor for pagination

subscription
string

Filter by subscription type (KYC, WITHDRAW, DEPOSIT)

dataId
string

Filter by ID of the data event (e.g., ticket ID, KYC attempt ID)

subAccountId
string

Filter by sub-account ID

Response

OK

events
object[]
required
cursor
string
required