curl --request POST \
--url https://api.engagefabric.com/events/batch \
--header 'Content-Type: application/json' \
--data '
{
"events": [
{
"projectId": "123e4567-e89b-12d3-a456-426614174000",
"externalUserId": "user_12345",
"eventType": "lesson_completed",
"properties": {
"lessonId": "math-101",
"score": 95,
"duration": 300
},
"timestamp": "2025-11-17T10:30:00Z",
"idempotencyKey": "evt_user12345_lesson_20251117_103000"
}
]
}
'