It should work when you set the ID correctly in these 2 places. Tested it before the RC got released and I was able to create clients with correct ID's for resellers.
$reseller_id = 2;
$params(
.....
'parent_client_id' => 2,
.....
);
$affected_rows = $client->client_add($session_id, $reseller_id, $params);
|