#cliftonm-customer-email
1 messages ยท Page 1 of 1 (latest)
- What events do you mean, exactly? And where are you looking for this info?
- If you save the payment method for future use then no, it should only need to be verified the first time.
- No, emails aren't sent in test mode. In test mode you just use the test amounts to verify the microdeposits.
The change events on the elements, like:
this.addressElement.on('change', event => {
Regarding #2, oh, that's interesting!
And the email that is part of the payment element when selecting US bank account.
Can you share an example test payment method you created as a result of this?
this is the request POST body for the payment_intents call, if that is what you meant:
{
"currency": "usd",
"amount": "96",
"payment_method_types": [
"card",
"us_bank_account"
]
}
Can you share the request id, like req_123?
https://stripe.com/docs/api/request_ids
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
req_mB58j9zd396oVE
Hi there ๐ I'm jumping in as my teammate needs to step away soon.
It looks like that Payment Intent has only been created, and no other requests have been made for it yet. I don't believe the events that the Payment Element emit will contain your customer's email address, but I'm pretty sure that information becomes available after your customer completes their payment.
Do you have an example of a completed test Payment Intent?
cliftonm-customer-email