Transfer credits from one account to another account, using the integer account number to specify the target account.
Hashtable result = tmClient.transferCreditsToAccount(3, "1234");
Console.WriteLine("Transfered 3 Credits (have {0} now), to account 902, now with {1}
Credits", result["source_credits_after"], result["target_credits_after"]);
|