Hello,
Who could help me?
I use LR payment via API.
I have changed php code "Server Mass Payment Tool (PHP)".
and my code is working but can make payment to one account only.
I need that pay to 2-3 account instantly.
Working code:
How need fill $transferList for pay to 2-3 account instantly?
I try:
but don't work...
Need help.
Thanks!
Who could help me?
I use LR payment via API.
I have changed php code "Server Mass Payment Tool (PHP)".
and my code is working but can make payment to one account only.
I need that pay to 2-3 account instantly.
Working code:
PHP:
$transferList = $lr_paidby.", ".$amount.", not-private, MEMO";
$request = new TransferRequest($apiName, $securityWord);
$request->addTransfersFromText($payerAcct, $transferList, $transferListError);
$transferListError = str_replace("\n","<br />", $transferListError);
if ($transferListError != "") {
$mess=$transferListError;
}
$responseContent = $request->getResponse();
How need fill $transferList for pay to 2-3 account instantly?
I try:
PHP:
$transferList = $lr_paidby1.", ".$amount1.", not-private, MEMO1"."\n".
$lr_paidby2.", ".$amount2.", not-private, MEMO2";
Need help.
Thanks!








