#sayori
1 messages · Page 1 of 1 (latest)
account id: acct_1M76b3RWnRQyFsB5
I've set the additional verifications using this additional arg during account creation:
additional_verifications = {"us_w8_or_w9": {
"requested": True,
"volume_limits": [{
"disables": "payouts_and_payments",
"at_volume": 1000,
"currency": "usd",
}],
"w8": {
"type": "standard",
"income_types": ["royalties_copyrights"]
}
}
}
Can you share the request ID of the request you used to set these additional requirements? We can't really help with Beta features here but I'll be happy to take a look and see if I can find something obvious
sure, let me find that
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_yprNxbYIkHtOqu
hmm, I don't see the additional_verifications fields set in the request
oh nevermind it's in the POST response body
it's set in the request, I thought the first item was the request and the second was the response but I flipped it lol
No worries
But I'm afraid you would need to reach out to your contact for the Beta program for clarification here. There isn't anything obviously wrong with the request
I'm actually not even sure how to view the tax_id verification that is also set in the same request. Is the entire additional_verifications work in beta?
All of it is restricted. Only the Document portion is not it Beta as far as I can tell
I see. Maybe I can try playing with the document one to see if I can get that to work first
I tried something like
stripe.Account.modify(
'acct_1M76b3RWnRQyFsB5',
additional_verifications ={"document":{ "requested": True}}}
)
but received Request req_N6tMJd2x3D15f2: Received unknown parameter: additional_verifications
Is this the right way to add an additional verification after-the-fact? Or is this impossible for the Document verification type?
Honestly I can't say. The document doesn't provide much information on using this parameter.
I would highly recommend reaching out to your contact for this feature as they should be connected with the people developing it
Maybe this is just something that can't be done through a language API, and has to be done through curl. I'll reach out, thanks!
Oh right! It won't be in our Client Libraries because it's a beta feature
Ohh....
You can check the Github repo to see if there is a beta branch
Well wait, your example is using Python, right?
Yep
Then additional fields should be supported by default. Once again I have to recommend you reach out your point of contact for the Tax ID & W8/W9 beta
Sounds good, I'll check in with them. thanks!