为了在银行帐户中付款,我需要在“收件人”和“银行帐户”参数中输入什么?

时间:2019-09-27 23:15:03

标签: laravel laravel-5 paypal stripe-payments payment-gateway

我正在使用条纹支出API。我想问一下您需要代替$recipient_id$bank_account_id做什么。

我认为我们需要提供她的信用卡号或借记卡号,但不确定。

\Stripe\Stripe::setApiKey('sk_test_xxxxxxxxxxxxxxxxxxx');

// Create a payout to the specified recipient
$payout = \Stripe\Payout::create([
  "amount" => 1000, // amount in cents
  "currency" => "usd",
  "recipient" => $recipient_id,
  "bank_account" => $bank_account_id,
  "statement_descriptor" => "JULY SALES"
]);

要在此处输入什么测试号码,以便我以付款形式获得结果?

0 个答案:

没有答案