Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

 

Transfer credits from one account to another account, using the username to specify the target account.

Example
1
2
3
Hashtable result = tmClient.transferCreditsToUser(3, "targetusername", "targetuserpass");
Console.WriteLine("Transfered 3 Credits (have {0} now), to account targetusername, now with {1} Credits", result["source_credits_after"],
result["target_credits_after"]);

Arguments:

 

int quantity: 

The number of credits to transfer from the source account to the target account.

String target_username: 

The username of the account to transfer the credits to.

String target_password: 

The password of the account to transfer the credits to.

Returns:


A Hashtable with four keys: 'source_credits_before', 'source_credits_after',
'target_credits_before' and 'target_credits_after' e.g. result["source_credits_after"]

Array keyValue
source_credits_before 

The number of credits on the source account before the transfer.

source_credits_after The number of credits on the source account after the transfer.
target_credits_before The number of credits on the target account before the transfer.
target_credits_after 

The number of credits on the target account after the transfer.

Specific error codes:

CodeMeaning
0

There are insufficient credits available to transfer the specified quantity, or the specified quantity is not a positive number

1

The target account number specified is not a valid number or username/password combination does not refer to any known account