#ben?

1 messages · Page 1 of 1 (latest)

prime bladeBOT
modest summit
#

Can you share the payment intent ID with me?

languid flicker
modest summit
#

That's a discord invite link - I need the PaymentIntent ID (like pi_123)

languid flicker
#

pi_3N5etYDFiZUD1t6W0vPpAFhd

#

sorry

modest summit
#

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

languid flicker
#

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)```
modest summit
#

Yeah this is definitely weird - let me see what I can find internally

languid flicker
#

Thanks

#

Didn’t even know stripe supported cash app

modest summit
#

Yeah that's fairly new

languid flicker
#

You figure it out? @modest summit

modest summit
#

We're still looking - I've got some teammates looking as well

languid flicker
#

thanks

modest summit
#

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?

languid flicker
modest summit
#

👍

languid flicker
#

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

modest summit
#

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

languid flicker
#

Okay will leave it