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.
POST /api/servers/:server/transfer
Initiates an outgoing server transfer to a destination node. This endpoint archives the server data and streams it to the target node.Path Parameters
The UUID of the server to transfer
Request Body
The destination node’s transfer endpoint URL where the archive will be sent
JWT bearer token for authenticating with the destination node
Server configuration details for the destination node
Response
Returns202 Accepted when the transfer is successfully initiated. The transfer runs asynchronously in the background.
Error Responses
A transfer is already in progress for this server
Failed to stop the server before initiating transfer
Transfer Process
When you initiate a transfer, Wings performs the following steps:Stream to Destination
Streams the archive to the destination node with progress updates every 5 seconds
The source node does not send a success status to the panel. Only the destination node reports success. If the transfer fails, the source node notifies the panel to reset the transfer state.
Example Request
cURL
JavaScript
Python
Example Response
Monitoring Transfer Progress
You can monitor transfer progress through the server’s WebSocket connection. The transfer system publishes events:- Transfer logs: Real-time progress messages (upload percentage, status updates)
- Transfer status: Current status (pending, processing, cancelling, cancelled, failed, completed)
Related Endpoints
Receive Transfer
Receive an incoming server transfer
Cancel Transfer
Cancel an outgoing server transfer
