作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试向另一个条纹帐户汇款时,它显示错误Fatal error: Uncaught (Status 400) (Request req_THWS8JfPOYcSrv) No such destination: "accountid" thrown in stripe-php\lib\Exception\ApiErrorException.php on line 38
对于我使用的转移
\Stripe\Stripe::setApiKey('SITE_KEY');
$transfer= \Stripe\Transfer::create([
'amount' => 1000,
'currency' => 'usd',
'transfer_data' => [
'destination' => 'other_stripe_account',
],
]);
\Stripe\Stripe::setApiKey('SITE_KEY');
$payout = \Stripe\Payout::create([
'amount' => 50,
'currency' => 'usd',
'destination' => "other_stripe_account",
],
["stripe_account" => "MY_STRIPE_ACCOUNT"]);
最佳答案
您不能使用任何其他帐户通过 Strip 汇款,您只能使用您在仪表板中创建的帐户,例如“连接帐户”,而不能将资金转入这些帐户。
关于php - 剥离 "Transfer"和 "Payout"问题 "No such destination"PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60566078/
我是一名优秀的程序员,十分优秀!