i am currently using the PHP API by Denis Basta…
and i successfully implemented this API to add and delete Simple Queue…
Now i need to edit the added queue ;
i am using following code to add simple queue
$ARRAY = $this->api_model->comm("/queue/simple/add", array(
"name" => $somedata['name'],
"target-addresses" => $ips,
"max-limit"=>$somedata['rx_max_limit']."/".$somedata['tx_max_limit'],
"parent"=>$parent_name,
));
how can i edit the simple queue by supplying queue name and its new parameters, i only need to update bandhwith of that specific simple queue, i only need to edit max limits of a simple queue;