curl --request DELETE \
--url http://localhost:8080/cabinet/admin/users/{user_id}/full \
--header 'Content-Type: application/json' \
--data '
{
"delete_from_panel": true
}
'{
"success": true,
"message": "<string>",
"deleted_from_bot": false,
"deleted_from_panel": false,
"panel_error": "<string>"
}Full user deletion - removes from bot database AND Remnawave panel.
Uses UserService.delete_user_account() which handles:
curl --request DELETE \
--url http://localhost:8080/cabinet/admin/users/{user_id}/full \
--header 'Content-Type: application/json' \
--data '
{
"delete_from_panel": true
}
'{
"success": true,
"message": "<string>",
"deleted_from_bot": false,
"deleted_from_panel": false,
"panel_error": "<string>"
}