Stripe.NET使用令牌向Stripe托管帐户添加银行帐户

时间:2017-06-05 02:30:45

标签: c# stripe-payments stripe-connect stripe.net

我搜索了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 个答案:

答案 0 :(得分:1)

您可以使用ExternalBankAccount属性来查看测试中的示例here

var params = new StripeAccountUpdateOptions();
params.ExternalBankAccount = new StripeAccountBankAccountOptions
{
    TokenId = _token.Id
}

var accountService = new StripeAccountService();
StripeAccount response = accountService.Update("acct_XXX", params);