curl --request POST \
--url https://api.example.com/api/servers \
--header 'Content-Type: application/json' \
--data '
{
"uuid": "<string>",
"start_on_completion": true
}
'curl --request POST \
--url https://api.example.com/api/servers \
--header 'Content-Type: application/json' \
--data '
{
"uuid": "<string>",
"start_on_completion": true
}
'Creates a new server on the Wings instance and begins the installation process.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/pterodactyl/wings/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header:
Authorization: Bearer <token>
202 Accepted to indicate the server creation and installation process has started in the background.
start_on_completion is truecurl -X POST https://wings.example.com/api/servers \
-H "Authorization: Bearer your-wings-token" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"uuid": "8d3f9a2e-5c7b-4f1e-9d2a-6e8f1c3b5a7d",
"start_on_completion": true
}'
HTTP/1.1 202 Accepted
router/router_system.go:61