Hello There,
Im trying to transfer accounts using PHP and WHM API 1 Functions:
enqueue_transfer_item
Although I implemented every overwrite option for the module AccountRemoteRoot, when I review the completed session, I get the error saying that the user already exists:

I want to be able to overwrite through the API, the same way I can by the checkbox "Overwrite" on the WHM Transfer Tool functionality.
The parameters I'm using when calling the API:
How can I force an overwrite?
Thank you.
Im trying to transfer accounts using PHP and WHM API 1 Functions:
enqueue_transfer_item
Although I implemented every overwrite option for the module AccountRemoteRoot, when I review the completed session, I get the error saying that the user already exists:

I want to be able to overwrite through the API, the same way I can by the checkbox "Overwrite" on the WHM Transfer Tool functionality.
The parameters I'm using when calling the API:
PHP:
$settings = array(
'api.version'=> '1',
'transfer_session_id' => $this->transferSessionId,
'module'=>'AccountRemoteRoot',
'user' => $this->accountUsername,
'localuser' => $this->accountUsername,
'detected_remote_user' => $this->accountUsername,
'domain' => $this->accountDomain,
'replaceip' => 'all',
'xferpoint' => '1',
'overwrite_sameowner_dbs' => '1' ,
'overwrite_sameowner_dbusers' => '1' ,
'skiphomedir' => '0' ,
'skipacctdb' => '0' ,
'force' => '1' ,
'skipaccount' => '0' ,
'overwrite_with_delete' => '1' ,
);
Thank you.