提问人:Steven Pfeifer 提问时间:6/5/2017 更新时间:6/6/2017 访问量:396
Stripe.NET 使用令牌将银行账户添加到 Stripe 管理账户
Stripe.NET add bank account using token to Stripe Managed Account
问:
我搜索了 Jayme Davis 的文档,但找不到如何使用令牌将银行账户添加到 Stripe 管理账户。在文档中添加银行帐户的唯一方法是使用 CustomerBankAccount 对象,该对象需要 CustomerID 作为参数,并且不适用于 AccountID(即管理帐户 ID)。我基本上想使用 Stripe.NET 和 C# 代码(从 Stipe 的网站)提出此请求。任何帮助将不胜感激!先谢谢你!
curl https://api.stripe.com/v1/accounts/acct_1032D82eZvKYlo2C/external_accounts \
-u sk_test_xxxxxxxxxxxxxxxxxxxxxx: \
-d external_account=btok_xxxxxxxxxxxxxxxxxxx
答:
1赞
koopajah
6/6/2017
#1
您可以使用该属性,并在此处查看测试中的示例ExternalBankAccount
var params = new StripeAccountUpdateOptions();
params.ExternalBankAccount = new StripeAccountBankAccountOptions
{
TokenId = _token.Id
}
var accountService = new StripeAccountService();
StripeAccount response = accountService.Update("acct_XXX", params);
评论