Usage: clientmove [-continueonerror] clid={clientID}... cid={channelID} [cpw={channelPassword}] Permissions: i_client_move_power i_client_needed_move_power Description: Moves one or more clients specified with ``[ clid ]`` to the channel with ID `cid`. If the target channel has a password, it needs to be specified with `cpw`. If the channel has no password, the parameter can be omitted. The `-continueonerror` parameter will cause some errors to be ignored (for example, clients that could not be moved). Parameters: -continueonerror : continue processing on some errors clid : integer_list : list containing comma seperated id(s) of client(s) i.e. `[ 0, 3, 4 ]` cid : integer : id of channel cpw : password of channel Example: clientmove clid=5|clid=6 cid=3 error id=0 msg=ok Example: curl -X POST http://localhost:10080/1/clientmove?api-key=BADARw_rpsOVBG-WAaJaoKD9piKPAK8wK2-0k3A -d '{ \"cid\": 1, \"clid\": [1,4] }' {"status":{"code":0,"message":"ok"}} curl -X POST http://localhost:10080/1/clientmove?api-key=BADARw_rpsOVBG-WAaJaoKD9piKPAK8wK2-0k3A -d '{ \"cid\": 3, \"clid\": [1,4] }' {"status":{"code":0,"message":"ok"}}