#hoang-ssn
1 messages · Page 1 of 1 (latest)
yep
current I'm test work with test default
but some case verify ssn
I don't know process it
are you using custom/express connected accounts?
I'm using custom connect account
you can use these test data to create test custom accounts : https://stripe.com/docs/connect/testing
yep
but I see, with key test
I can't update profile account
when I use key live
stripe return for me a error
You cannot use this method on your own account. you may only use it on connected accounts
do you have a request id for me to look at? https://support.stripe.com/questions/finding-the-id-for-an-api-request
stripe.Account.modify(
account_id=account_id,
individual=individual,
business_profile={
"url": settings.BASE_URL,
"mcc": "5045",
},
I call api
with my data
stripe.Account.modify(
individual : {
"address": {
"line1": "11324 east apache street",
"city": "Tulsa",
"postal_code": "74116",
"state": "oklahoma",
"country": "US"
},
"first_name": "linh",
"last_name": "vo",
"dob": {
"day": "16",
"month": "06",
"year": "2004"
},
"email": "linhvo10@yopmail.com",
"phone": "+1 202 555 0194"
},
"account": "acct_1LBCYeQq1OwyYiSn"
)
i'm a bit confused right now - req_eN3IWUymi5gGbb doesn't show an error. What is the request id where you're seeing an error?
I did not found that request-id error
where did you see that error? do you have a screenshot?
i think the error message is fairly self explanatory - you can only use this method for a connected account : https://stripe.com/docs/api/accounts/update
current, my account is connect account
yep
https://stripe.com/docs/api/accounts/update?lang=curl#update_account I believe the first param of stripe.Account.modify is the connected account's ID
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Can you do this instead?
"acct_1LBCYeQq1OwyYiSn", ...)```
yep. thank @earnest quail , @earnest quail . I updated it
hello @earnest quail and @scarlet spruce
I have a question
when I enter last four ssn
i must verify multiple step
does stripe support any api so i can verify them under my platform?
https://stripe.com/docs/connect/identity-verification-api#validation-and-verification-errors you can check the errors array of the requirements
when i enter a ssn
I see require Identity document
but when i update info on dashboard
I only see reupdate ssn true
if I update true ssn, but stripe verify wrong
I have to update verification.document?
You should always check the account's requirements array for the list of required info.