简体   繁体   English

使用Braintree付款网关直接将钱汇到客户的银行帐户

[英]send money direct to customer's bank account using braintree payment gateway

Is there API that directly transfer money to user's bank account using Braintree payment gateway? 是否存在使用Braintree付款网关将资金直接转帐到用户银行帐户的API?

I want to transfer money every week. 我想每周转账。 For that I can make cronjob, but want to know is there any API? 为此,我可以进行cronjob,但想知道是否有任何API?

I found below from this 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 I am not getting what to do with above options.What is routing number and how to use other options? 但是我不知道如何使用上述选项,什么是路由号码以及如何使用其他选项? Can anyone guide me? 谁能指导我?

No. 没有。

Braintree is a credit card payment gateway - its purpose is to help you accept credit card payments from customers. Braintree是信用卡付款网关-其目的是帮助您接受客户的信用卡付款。 It's not a general-purpose financial API, and does not contain any functionality to send or receive bank transfers. 它不是通用的金融API,并且不包含任何发送或接收银行转帐的功能。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM