Help code APi nat move

hello I’m trying to make the code to move through php work but this does not give me an error, but it does not make the correct movement either, the idea is that through the code they move the nat rules from one side to the other

<?php 
	require('RouterosAPI.php');
 	require('ip.php');
$orden1= $_REQUEST["orden1"];
$orden2= $_REQUEST["orden2"];
  	$API = new RouterosAPI();
    $API->debug = false;
$data = new StdClass();
 	if ($API->connect($ip,$user,$pw)) {
       $API->write("/ip/firewall/nat/move",false);
       $API->write($orden1,false);
       $API->write('=destination='.$orden2,true);
       $READ = $API->read(false);
       $ARRAY = $API->parseResponse($READ);
               $API->disconnect();
        }
?>

replace code for :smiley:
solved thanks

 $API->write('=numbers='.$orden1,false);