私は振込で問題があります。ストライプ接続の口座が銀行振り込みになります
私のストライプ接続アカウント利用可能balは$ 200.00で、私は$ 200.00を転送しており、pandding残高は$ 150.00です。
\Stripe\Stripe::setApiKey($_REQUEST['secret_id']);
$transfer = \Stripe\Transfer::create(array(
"amount" => 20000,
"currency" => "usd",
"destination" => "default_for_currency",
"description" => $_REQUEST['description'],
"source_type" => "bank_account"
));
は、出力を参照してください:
{
msg = "You have insufficient funds in your Stripe account for this transfer. Your ACH balance is too low. You can use the the /v1/balance endpoint to view your Stripe balance (for more details, see stripe.com/docs/api#balance).";
status = 0;
}
私は解決策をしてください必要があります。あなたのストライプにエラーinsuficient資金を示すに
は
は私のコードを参照してくださいアカウントを接続しました
ありがとう、それは私を助けてくれました:) 実際には、私は '' source_type "=>" bank_account "'を見逃しました。カード&不十分なバランスを言う。 –