Skip to main content
POST
/
cabinet
/
admin
/
remnawave
/
squads
/
{squad_uuid}
/
action
Perform Squad Action
curl --request POST \
  --url http://localhost:8080/cabinet/admin/remnawave/squads/{squad_uuid}/action \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "add_all_users",
  "name": "<string>",
  "inbound_uuids": [
    "<string>"
  ]
}
'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Path Parameters

squad_uuid
string
required

Body

application/json

Request to perform squad action.

action
enum<string>
required
Available options:
add_all_users,
remove_all_users,
delete,
rename,
update_inbounds
name
string | null
inbound_uuids
string[] | null

Response

Successful Response

Response after squad operation.

success
boolean
required
message
string | null
data
Data · object