Transfer credits from one account to another account, using the integer = account number to specify the target account.
$result =3D $tmClient->transferCreditsToAccount(3, '1234'); echo "Transfered 3 credits (leaving {$result['source_credits_after']})= , to targetusername, which now has {$result['target_credits_after']} credits&quo= t;;=20
Arguments:
integer $quantity:
The number of credits to transfer from the source account to the target = account.
string $targetAccountNumber:
The account number of the account to transfer the credits to (available = in the web-based UI)
Returns:
an array with four keys: 'source_credits_before', 'source_credits_after'= , 'target_credits_before' and 'target_credits_after' e.g. $result['source_c= redits_after']
Array key | Value |
---|---|
source_credits_before | The number of credits on the source account b= efore the transfer. |
source_credits_after | The number of credits on the source account a= fter the transfer. |
target_credits_before | The number of credits on the target account befo= re the transfer. |
target_credits_after | The number of credits on the target account a= fter the transfer. |
Specific error codes:
Code | Meaning |
---|---|
0 | There are insufficient credits available to t= ransfer 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 a= ccount |
You must know!
=20 =20Our example code is an illustra= tion of how you might integrate with our systems and is not certified for p= roduction environments. You are responsible for testing and QA.