Transfer credits from one account to another account, using the integer account number to specify the target account.
Example
1 2 3 | 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" ); |