Transfer credits from one account to another account, using the integer account number to specify the target account.
| Code Block | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
Hashtable<String, String> result = tmClient.transferCreditsToAccount(3, "1234");
System.out.println("Transfered 3 Credits (have " + result.get("source_credits_after") + " now), to account 1234, now with " +
result.get("target_credits_after") + "Credits");
|