curl --request POST \
--url https://api.example.com/cabinet/admin/remnawave/squads/{squad_uuid}/action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "add_all_users",
"name": "<string>",
"inbound_uuids": [
"<string>"
]
}
'{
"success": true,
"message": "<string>",
"data": {}
}Perform an action on a squad.
curl --request POST \
--url https://api.example.com/cabinet/admin/remnawave/squads/{squad_uuid}/action \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "add_all_users",
"name": "<string>",
"inbound_uuids": [
"<string>"
]
}
'{
"success": true,
"message": "<string>",
"data": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.