curl -X PATCH "https://panel.example.com/api/admin/nodes/node-uuid" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}'
{
"data": {
"id": "node-uuid",
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}
}
Update node configuration and settings
curl -X PATCH "https://panel.example.com/api/admin/nodes/node-uuid" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}'
{
"data": {
"id": "node-uuid",
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}
}
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/xyrapanel/panel/llms.txt
Use this file to discover all available pages before exploring further.
nodes:write permission.
http or httpscurl -X PATCH "https://panel.example.com/api/admin/nodes/node-uuid" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}'
{
"data": {
"id": "node-uuid",
"name": "US-East-1-Updated",
"memory": 32768,
"disk": 512000,
"maintenanceMode": false
}
}