Example: create employee
curl -X POST "http://itmatch.dev/api/v1/employees/" \
-H "Authorization: Bearer yst_live_YOUR_SECRET" \
-H "Content-Type: application/json" \
-d '{
"external_id": "crm-employee-42",
"first_name": "Jane",
"last_name": "Doe",
"position": "Backend Developer",
"status": "draft",
"education_level": "bachelor",
"manager_id": 12,
"current_location": "1",
"timezone": "Europe/Warsaw",
"skills": [{"name": "Python", "level": "advanced"}],
"languages": [{"name": "English", "proficiency": "fluent"}],
"documents": [{"document_type": "passport", "country": "Poland"}]
}'