List events for an inbox
Returns captured events for the specified inbox, ordered newest first. Results are paginated; uselimit and offset to page through large sets.
Path parameters
string
required
The unique ID of the inbox whose events you want to retrieve. You receive this value when you create an inbox.
Query parameters
number
Maximum number of events to return. Defaults to
20. Cannot exceed 100.number
Number of events to skip before returning results. Defaults to
0. Use this to implement pagination alongside limit.Authentication
Authentication is required for saved inboxes. Pass your Bearer token in theAuthorization header. Anonymous inboxes can be read without a token while they are still active.
Request
Response
array
An array of event objects, ordered newest first.
number
The total number of events stored for this inbox, regardless of the current
limit and offset. Use this value to calculate how many pages of results are available.