我想集成在我们的后端仪表板上的Stripe的另一个链接,以启用/链接现有的“标准”帐户。
我只想创建一个动态的入职帐户链接,例如 通过API,
任何人都可以帮助我找出如何在API响应API时如何获得链接的方式?
我已经尝试使用下面的链接 https://stripe.com/docs/docs/docs/api/account_links/account_links /创建
I want to integrate another link from stripe on our backend dashboard for onboarding/linking existing "Standard" accounts.
I just want to create a dynamic onboarding account link like https://connect.stripe.com/oauth/authorize?redirect_uri=https://connect.stripe.com/hosted/oauth&client_id='client_id'&state='onboard_id'&response_type=code&scope=read_write&stripe_user[country]=US via API
Can anyone please help me to find out the way like how we can get above link in response of API?
I have already tried to check with below link https://stripe.com/docs/api/account_links/create
发布评论
评论(1)
如果通过“帐户ID”,则是指
client_id
查询参数,则可以在连接设置页面。我认为可以使用API检索它,但是该ID不会更改,因此您可以从仪表板中抓住它并将其存储在您的末端以稍后再使用。If by "account ID" you mean the
client_id
query parameter, then it can be found in your Stripe dashboard at the bottom of the Connect settings page. I don't think this can be retrieved with the API, but this ID won't change so you can grab it from the dashboard and store it on your end to reuse it later.