#slurp - connect express
1 messages ยท Page 1 of 1 (latest)
hi so im working on a platform that users will be able to use express connected accounts
my question is if i am able to see their phone number
i know you need to use a phone number for express but im wondering if i can see it or if stripe hides it
You will have access to the Account objects which contain a large number of data properties:
https://stripe.com/docs/api/accounts/object
Depending on how the account is created/setup, it might be under individual.phone https://stripe.com/docs/api/accounts/object#account_object-individual-phone
or business_profile.support_phone: https://stripe.com/docs/api/accounts/object#account_object-business_profile-support_phone
got it. while im here do you know if theres a way to only allow individual profiles instead of both individual and business
You as the platform will be creating the Account. So you can specify the Account business_type: https://stripe.com/docs/api/accounts/create#create_account-business_type
great. appreciate you pointing me in the right direction