PlaygroundEvents
List events
Authorization
BearerAuth AuthorizationBearer <token>
Use a secret API key as the bearer token. Keys are prefixed with
vk_test_ (test mode) or vk_live_ (live mode).
In: header
Query Parameters
limit?integer
Number of items to return per page.
Default
10Range
1 <= value <= 100starting_after?string
Cursor for forward pagination. Returns items created after this ID.
type?string
Filter by event type (e.g. verification_session.verified).
created_after?integer
Unix timestamp. Only return events created after this time.
created_before?integer
Unix timestamp. Only return events created before this time.
session_id?string
Filter events by verification session ID.
Response Body
application/json
curl -X GET "http://localhost:3000/v1/events"{
"object": "list",
"url": "string",
"has_more": true,
"total_count": 0,
"data": [
{
"id": "string",
"object": "event",
"type": "string",
"api_version": "string",
"data": {
"object": null
},
"livemode": true,
"pending_webhooks": 0,
"created": 0,
"delivery_summary": {
"total": 0,
"delivered": 0,
"failed": 0,
"pending": 0
}
}
]
}