#NeatFastro
1 messages · Page 1 of 1 (latest)
Hi, can you share which API reference you're using?
I'm using Stripe nodejs sdk
looks like you're kinda busy, go and respond to other people I can wait
You're referring to the Persons API: https://stripe.com/docs/api/persons/create, is that correct?
Yep
My gut says it's expected but let me test this on my end.
Ok
Also how to manually trigger the requirements of verification for document and additional_document for.each person?
👋 stepping in as pgskc needs to step away
What type of Connected Accounts are you using?
Custom
Hmm can you give me an example account ID?
I'm pretty sure we do display multiple persons in the Dashboard UI
I won't be able to do it right now, maybe in an hour
I will first try to do it again my self, thanks
also can answer my other question?
this one
Ah sorry, missed that
You can trigger different thresholds using the verification token that we discuss here: https://stripe.com/docs/connect/testing-verification#triggering-thresholds
Ok let me check this out
hmmm I was referring to the requirements present on the person object and not the account object
Hmm I haven't played with this stuff recently but I believe the same thing holds true here and those verification tokens will trigger necessary person verifications as well
Ok but I have to idea how to use the described method, can you help me out a bit
Are you saying you don't understand how to use a verification token?
yep
You can simply create a PaymentIntent on your Connected Account
And use the tok_visa_triggerVerification as the payment_method
With the Stripe Account header
What server-side language are you using?
Oh you said node
ok got it
Just needed this, thanks
amount: 2000,
currency: 'usd',
payment_method_types: ['card'],
payment_method: 'tok_visa_triggerVerification',
confirm: true,
stripeAccount: 'acct_xxx'
});```
Something simple like that should do it
ok thanks a lot.
Sure thing
Unix
seconds or minutes?
Seconds
ok thanks