Subscribers
Trigger event for subscriber
Triggers an event for a subscriber. Creates the subscriber if they don't exist. Creates the event definition if it doesn't exist.
post/subscribers/events
Request body
Example request
{
"email": "user@example.com",
"externalId": "user_123",
"event": "purchase.completed",
"properties": {
"amount": 9900,
"currency": "USD",
"productId": "prod_123"
}
}Response
Event triggered successfully
Example response
{
"success": true
}