API Reference
List received events
Returns the received events of a property, most recent first.
Authorization
bearerAuth AuthorizationBearer <token>
Personal Access Token — create in the dashboard under Account → API Tokens. Tokens have a configurable scope (read / write / admin).
In: header
Path Parameters
property*string
Property ID.
Query Parameters
period?string
Time range preset: 24h, 7d or 30d — alternatively from/to.
Value in
- "24h"
- "7d"
- "30d"
from?string
Start date (ISO 8601).
Format
dateto?string
End date (ISO 8601).
Format
dateResponse Body
application/json
curl -X GET "https://example.com/properties/string/events"{ "data": [ { "event_id": "string", "event": "string", "received_at": "2019-08-24T14:15:22Z", "value": 0, "currency": "string", "delivery": [ { "platform": "string", "status": "string", "latency_ms": 0 } ] } ]}