- Use
searchto match event names. - Use
sorting[]to control sort order. If you do not provide sorting, events are ordered bycreated_at. - Use
per_pageto control pagination size. The default is10. - The resolved contact must belong to the API key's workspace.
List Events
Retrieve a paginated list of custom events recorded for a contact in your workspace. The contact path parameter accepts either the contact UUID or the current workspace identity value.
Query Options
Searching, sorting, and pagination supported by the list endpoint
GET
/v1/contacts/:contact/eventsList custom events recorded for a contact
Path parameters
contactstring Required Contact UUID or the current workspace identity value
Request body
searchstringQuery parameter used to search by event name
per_pagenumberQuery parameter for results per page. Defaults to `10`.
sorting[]arrayQuery parameter containing JSON-encoded sort descriptors
Show Object Properties
Success and Errors
Expected outcomes for list event requests
- Successful requests return a paginated event collection.
- The endpoint returns
404if thecontactpath parameter does not resolve to a contact in the API key's workspace. - The endpoint returns
403if the token does not have access to the workspace.