This endpoint enables you to fetch a list of events that have been created by the system.
You can use query parameters to filter the results by the created_at time using created_at.lt, created_at.gt, etc. and you can
limit the number of events returned.
Use page_cursor from the previous response to paginate through results. Use order to control sort direction (ASC or DESC by created_at).
Events returned will be ordered by created_at in ascending order by default.
Paxos APIs use OAuth 2 with the client credentials grant flow.
Token URLs:
Learn more in the API credentials guide →
Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z.
Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z.
Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z.
Include timestamps greater than or equal to gte. RFC3339 format, like 2006-01-02T15:04:05Z.
Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z.
Number of results to return. Defaults to 100 if no limit is provided.
Retrieve all (default) or optionally filter by event type.
Filter for test events (true) or real events (false). Defaults to false (real events only).
Sort order for results by created_at. Defaults to ASC (oldest first).
DESC, ASC Cursor from a previous response to fetch the next page.