paypal - How to i get transaction funding source -


i use api classic , operation transactionsearch , gettransactiondetails searches transaction

$transactionsearchrequest = new transactionsearchrequesttype(); $transactionsearchrequest->startdate = utils::dateconvert($start_date); $transactionsearchrequest->enddate = utils::dateconvert($start_date + $interval); $transearchreq = new transactionsearchreq(); $transearchreq->transactionsearchrequest = $transactionsearchrequest;  $paypalservice = new paypalapiinterfaceserviceservice(configuration::getacctandconfig());  $transactionsearchresponse = $paypalservice->transactionsearch($transearchreq); $paypalservice = new paypalapiinterfaceserviceservice(configuration::getacctandconfig()); $transactionsearchresponse = $paypalservice->transactionsearch($transearchreq); print_r($transactionsearchresponse); 

response:

[0] => paymenttransactionsearchresulttype object ( [timestamp] => 2015-07-09t01:20:10z [timezone] => gmt [type] => payment [payer] => xxx@xxx.com [payerdisplayname] => xxx inc. [transactionid] => xxxxxxxxxxxxxxxxxx [status] => completed [grossamount] => basicamounttype object ([currencyid] => usd, [value] => -129.38) [feeamount] => basicamounttype object ([currencyid] => usd, [value] => 0) [netamount] => basicamounttype object ([currencyid] => usd, [value] => -129.38) ) 

but function (transactionsearch , gettransactiondetails(very large array, not write response)) dont have funding source, how transaction funding source?

image http://i60.tinypic.com/30trq0m.png

p.s. sorry bad english

you don't have access funding source information transactions receive.

that private sender.


Comments