Subscribers
Trigger multiple events for subscriber
Triggers multiple events for a subscriber. Creates the subscriber if they don't exist and applies the workspace default lists setting. Creates event definitions if they don't exist. Events are processed independently, so an error response may still include events that were already triggered. When the workspace has double opt-in enabled, a brand-new subscriber is created pending confirmation, a single confirmation email is queued for the request, and matching sequences wait at their trigger until the subscriber confirms.
post/subscribers/events/bulk
Request body
Example request
{
"email": "user@example.com",
"externalId": "user_123",
"firstName": "John",
"lastName": "Doe",
"events": [
{
"name": "page.viewed",
"properties": {
"page": "/pricing"
},
"occurredAt": "2024-11-02T10:00:00Z",
"eventId": "inv_9182"
}
]
}Response
Events triggered successfully
Example response
{
"success": true
}