我正在使用条纹支出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"
]);
要在此处输入什么测试号码,以便我以付款形式获得结果?