ReferenceV1
List Events
List events for the tenant with optional filters. Events are returned in reverse chronological order (most recent first).
Query Parameters
event_type?|
resource_type?|
resource_id?|
from?|
to?|
limit?integer
Default
100Range
1 <= value <= 100offset?integer
Default
0Range
0 <= valueHeader Parameters
authorization?|
X-API-Key?|
Cookie Parameters
vai_token?|
Response Body
application/json
application/json
curl -X GET "https://loading/api/v1/events"{
"events": [
{
"actorId": "string",
"actorType": "user",
"causationId": "string",
"correlationId": "string",
"eventType": "schedule.fired",
"id": "string",
"occurredAt": "2019-08-24T14:15:22Z",
"payload": {},
"resourceId": "string",
"resourceType": "action_run",
"tenantId": "string"
}
],
"hasNext": true,
"limit": 0,
"offset": 0,
"total": 0
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}List Connections
List connections for the current tenant. Supports two pagination modes: - **Offset mode** (default): Use `limit` and `offset` params. Returns total count. Best for data tables with page jumping. - **Cursor mode**: Provide `cursor` param. Returns `next_cursor` for infinite scroll. Best for list views and mobile apps.
List Events By Correlation
List all events with the same correlation ID. Events are returned in chronological order (oldest first) to show the chain of events.