attendance field will be attended (candidate was present) or no_show (candidate did not attend).Authorization: Bearer ********************curl --location 'https://your-api-server.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"event_id": "018f2c3d-1234-7abc-abcd-000000000005",
"event_type": "booking.interview_completed",
"occurred_at": "2026-06-10T10:05:00+00:00",
"data": {
"booking_id": 1501,
"candidate_name": "Jane Smith",
"interview_type": "Clinical Interview",
"start_date": "2026-06-10T09:00:00+01:00",
"attendance": "attended",
"interview_status": "completed"
}
}'