Record customer events in Lime Journey
curl -X POST https://api.limejourney.com/events \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "entity_external_id": "customer123", "name": "purchase", "properties": { "amount": 99.99, "product": "premium" } }'
{ "status": "success", "data": { "id": "evt_123", "entity_external_id": "customer123", "name": "purchase", "properties": { "amount": 99.99, "product": "premium" }, "timestamp": "2024-01-15T12:00:00Z" } }