List Events
Individual calls, newest first — the live feed.
The only read in the API that touches the call log rather than the metrics table, because a counter has no rows to point at and cannot answer “did the call I just made land”. Rows are kept 30 days; the numbers built from them are not.
Paged by id, not by time, so a cursor is exact: poll with after=<newest_id> and you can neither miss a call nor see one twice. Page backwards with before=<oldest_id>, which is stable under a live feed in a way an offset is not.
total counts every call matching the filter and ignores the cursor, so it is the size of the feed rather than what is left of it — divide by limit for a page count.
Every field is a size, a duration or a hash. Arguments and results are never stored, so there are none here to return.
Path Parameters
Query Parameters
Only calls newer than this id. Use newest_id from the last response.
Only calls older than this id. Use oldest_id to page back.
1 <= x <= 1001empty is an ok call that returned nothing useful.
ok, empty, bad_args, tool_error, crashed 1Response
OK
The response is of type unknown.