List Subscriber Events
List events recorded on one contact.
MethodGET
/api/v2/subscribers/:subscriber/eventsLists events recorded on one contact, newest first. Permission: subscribers.
Path Parameters
| Name | Type | Description |
|---|---|---|
subscriber | string | Required. Subscriber id or email. |
Query Parameters
| Name | Type | Description |
|---|---|---|
limit | integer | Page size. Default 50. Min 1, max 100. |
after | string | Event id cursor. Next page, older than this id. |
Response Fields
| Field | Type | Description |
|---|---|---|
object | "list" | Discriminator. Always list. |
has_more | boolean | true when another page exists. |
data | array | Event objects: id, eventType, data, createdAt. |
Errors
| Status | name | When |
|---|---|---|
| 401 | missing_api_key | Missing or invalid bearer token |
| 403 | missing_permission | Token lacks the subscribers permission |
| 404 | not_found | Unknown subscriber |