#ben?
1 messages · Page 1 of 1 (latest)
Can you share the payment intent ID with me?
That's a discord invite link - I need the PaymentIntent ID (like pi_123)
Is there something unique or different about how you're integration Invoices? I'm surprised to see this payment even get in a state of requires_capture
Not at all
I’ve never had this happen with card payments
They capture automatically
# Create Stripe customer
customer = await stripe.Customer.create(email=email)
# Create Stripe invoice
invoice_item = await stripe.InvoiceItem.create(
customer=customer.id,
price=stripe_price_id, # Replace with your Stripe price ID
)
invoice = await stripe.Invoice.create(
customer=customer.id,
auto_advance=True,
pending_invoice_items_behavior="include",
)
# Finalize the invoice
finalised_invoice = await stripe.Invoice.finalize_invoice(invoice.id)```
Yeah this is definitely weird - let me see what I can find internally
Yeah that's fairly new
You figure it out? @modest summit
We're still looking - I've got some teammates looking as well
thanks
Okay so quick update from me - we're seeing some incorrect behavior (specifically with cashapp) and we're working to fix it. Can you write into support (https://support.stripe.com/contact) so they can flag when the fix is fully rolled out?
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Okay I’ll send an email there
👍
Am I okay to cancel the payment so the customer can pay using a new card? @modest summit
Or do you need me to leave it pending
I'd double check with support, but if I were you I'd leave it as is and wait for stripe to either fix the Invoice internally or give clear instructions on how to recover
Okay will leave it