cURL
curl --request GET \
--url 'https://localhost/api/v2/events/?type=SOME_STRING_VALUE&targetID=SOME_INTEGER_VALUE&limit=SOME_INTEGER_VALUE&offset=SOME_INTEGER_VALUE'{
"events": [
{
"event_type": "<string>",
"info": "<string>",
"reporting_id": 123,
"target_id": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unique_id": [
123
]
}
],
"next": 123
}List events
List the latest event log entries, in descending order.
GET
/
events
/
cURL
curl --request GET \
--url 'https://localhost/api/v2/events/?type=SOME_STRING_VALUE&targetID=SOME_INTEGER_VALUE&limit=SOME_INTEGER_VALUE&offset=SOME_INTEGER_VALUE'{
"events": [
{
"event_type": "<string>",
"info": "<string>",
"reporting_id": 123,
"target_id": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unique_id": [
123
]
}
],
"next": 123
}Query Parameters
Type of events to filter for (e.g., "create_table"). Only one event type can be specified at a time.
Filter for events with this targetID. Only one targetID can be specified at a time.
Maximum number of results to return in this call.
Continuation token for results after a past limited run.

