Customer Events
Request
POST <API base url>/customer-events
Body
[
{
"id": int64 required, // Unique event identifier
"customerId": int64 required, // Customer identifier
"timestamp": string required, // Transaction timestamp in UTC time zone
// in ISO format e.g. "2022-08-15T10:03:15.332Z"
"type": string required, // favorite, ...
"params": any // depends on event type
},
...
]
Response
The endpoint returns no response body.