首页 > 解决方案 > 如果我知道客户 ID,有没有办法获得 Stripe 帐户 ID?

问题描述

我使用 Stripe API,如果我知道客户 ID,我需要获取 Stripe 帐户 ID。有没有办法做到这一点?

标签: stripe-payments

解决方案


当帐户连接时,您可以在 OAUTH 流程结束时获取它,请参阅https://stripe.com/docs/connect/standard-accounts类似:

{
"token_type": "bearer",
"stripe_publishable_key": PUBLISHABLE_KEY,
"scope": "read_write",
"livemode": false,
"stripe_user_id": USER_ID,  //this is stripe account id
"refresh_token": REFRESH_TOKEN,
"access_token": ACCESS_TOKEN
}

推荐阅读