curl -X POST "https://panel.example.com/api/admin/servers" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"name": "My Game Server",
"description": "Production Minecraft server",
"ownerId": "user-uuid",
"eggId": "egg-uuid",
"nodeId": "node-id",
"allocationId": "allocation-uuid",
"memory": 2048,
"swap": 0,
"disk": 10240,
"io": 500,
"cpu": 100,
"databases": 1,
"allocations": 0,
"backups": 3,
"environment": {
"MINECRAFT_VERSION": "1.20.1",
"SERVER_JARFILE": "server.jar"
},
"startOnCompletion": true
}'