#umairasif7

1 messages · Page 1 of 1 (latest)

tired sandBOT
undone bridge
#

Right now I am creating account for United Kingdom audience.

minor sonnet
#

Could you share why the test data is not sufficient for your testing and what kind of real verification are you referring to?

undone bridge
#

For live custom account, I will have to ask user for his identity document which will be a real identity.

#

But right now I am sending harcoded data provided by stripe to get the connect account verified.

#

For that there is no need to upload any document in test mode

#

I just wanted to check that if my application go live and custom connect account is created there, what errors will user face there and I can I cater those errors.

#

For now with test data, I can not do that.

#

$stripeParams['dob'] = '1901-01-01';
$stripeParams['identity_document_front_token'] = 'file_identity_document_success';
$stripeParams['city'] = 'Aberdeen';
$stripeParams['postal_code'] = 'AB24';
$stripeParams['address_line1'] = 'address_full_match';

I was talking about this test data.

minor sonnet
#

I see. The verification in test mode is based on the test data provided. It simulates the real verification that could happen in live mode. In the test data in connect test page, unsuccessful verification data is also provided which you could use to simulate error cases: https://stripe.com/docs/connect/testing

undone bridge
#

I can get the real-time update through webhooks if test data fails?

minor sonnet
#

If verification is unsuccessful, requirements will appear currently_due with error information in webhook events

undone bridge
#

Alright, thanks river.

minor sonnet
#

No problem! Happy to help 😄