1
有誰知道如何使用Stripe API轉移到銀行帳戶?將條形API傳輸到銀行帳戶
在條紋參考看起來很簡單:https://stripe.com/docs/api/python#create_transfer
stripe.Transfer.create(
amount=400,
currency="usd",
destination="acct_19MKfXGyOv0GIG6Z",
description="Transfer for [email protected]"
)
我不明白的地方目的地ID的由來。我怎樣才能得到銀行賬戶的目的地ID?
由於
如果我想轉移到不是我在Stripe的銀行賬戶的銀行賬戶,那有可能嗎?我有路由號碼和帳號 – user6824563
不,這是不可能的,因爲它不符合Stripe的服務協議 - 您只能添加擁有Stripe帳戶的同一個實體擁有的銀行帳戶。如果您需要代表第三方接受付款,則應該查看[Stripe Connect](https://stripe.com/connect)。 – Ywain