Skip to main content
POST
/
remnawave
/
squads
/
migrate
Migrate Squad
curl --request POST \
  --url http://localhost:8080/remnawave/squads/migrate \
  --header 'Content-Type: application/json' \
  --data '
{
  "source_uuid": "<string>",
  "target_uuid": "<string>"
}
'
{
  "success": true,
  "detail": "<string>",
  "error": "<string>",
  "data": {
    "source_uuid": "<string>",
    "target_uuid": "<string>",
    "total": 0,
    "updated": 0,
    "panel_updated": 0,
    "panel_failed": 0,
    "source_removed": 0,
    "target_added": 0
  }
}

Body

application/json
source_uuid
string
required
target_uuid
string
required

Response

Successful Response

success
boolean
required
detail
string | null
error
string | null
data
RemnaWaveSquadMigrationStats · object