【发布时间】:2019-09-05 07:17:28
【问题描述】:
我是 Stripe,负责使用 Stripe Connect 存储资金并将资金转移给卖家
我的问题是,当我尝试将资金从我的 Stripe 账户转移到关联账户时(资金处于测试模式),我收到以下错误
curl https://api.stripe.com/v1/transfers -u sk_test_gjcwEVcKNBSBPQZxk9GdgwkX: -d amount=100 -d currency=gbp -d destination=acct_1EMBnXEZ0uftLeW4 -d transfer_group=ORDER_95
{
"error": {
"code": "balance_insufficient",
"doc_url": "https://stripe.com/docs/error-codes/balance-insufficient",
"message": "You have insufficient funds in your Stripe account. One likely reason you have insufficient funds is that your funds are automatically being paid out; try enabling manual payouts by going to https://dashboard.stripe.com/account/payouts.",
"type": "invalid_request_error"
}
}
我的作品 ::
因此尝试了我在 stackoverflow 中找到的解决方案。我在 TEST 模式下添加了 GBP a 和 USD 的金额
添加 TEST amount 后,我仍然收到相同的错误。我也试过美元
请帮我解决问题。
【问题讨论】:
标签: stripe-payments payment-gateway