curl --location --request POST 'https://your-api-server.com' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"event": "validation.completed",
"timestamp": "2025-06-03T14:40:00.000Z",
"data": {
"job_id": "665a1f4e2c3b7800129dce01",
"status": "completed",
"total_items": 4,
"successful": 3,
"failed": 1,
"completed_at": "2025-06-03T14:40:00.000Z",
"valid": 2,
"invalid": 1,
"risky": 1
}
}'