php - send money direct to customer's bank account using braintree payment gateway -


is there api directly transfer money user's bank account using braintree payment gateway?

i want transfer money every week. can make cronjob, want know there api?

i found below link:

$merchantaccountparams = [   'individual' => [     'firstname' => 'jane',     'lastname' => 'doe',     'email' => 'jane@14ladders.com',     'phone' => '5553334444',     'dateofbirth' => '1981-11-19',     'ssn' => '456-45-4567',     'address' => [       'streetaddress' => '111 main st',       'locality' => 'chicago',       'region' => 'il',       'postalcode' => '60622'     ]   ],   'business' => [     'legalname' => 'jane\'s ladders',     'dbaname' => 'jane\'s ladders',     'taxid' => '98-7654321',     'address' => [       'streetaddress' => '111 main st',       'locality' => 'chicago',       'region' => 'il',       'postalcode' => '60622'     ]   ],   'funding' => [     'descriptor' => 'blue ladders',     'destination' => braintree_merchantaccount::funding_destination_bank,     'email' => 'funding@blueladders.com',     'mobilephone' => '5555555555',     'accountnumber' => '1123581321',     'routingnumber' => '071101307'   ],   'tosaccepted' => true,   'mastermerchantaccountid' => "14ladders_marketplace",   'id' => "blue_ladders_store" ]; $result = braintree_merchantaccount::create($merchantaccountparams); 

but not getting above options.what routing number , how use other options? can guide me?

no.

braintree credit card payment gateway - purpose accept credit card payments customers. it's not general-purpose financial api, , not contain functionality send or receive bank transfers.


Comments