#l3ash9i98

1 messages · Page 1 of 1 (latest)

vast jettyBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

gaunt ore
#

Hi, let me help you with this.

unborn quiver
unborn quiver
#

IS it necessary ? I mean , what is the functionality of that ?

#

I can see too that i have a lot of things activated but it doesnt show on the checkout form

gaunt ore
#

Bank debits usually take long time to complete (sometimes days), so you can't keep your customer on session for that. Stripe will send you a notification on your webhook endpoint when it's succeeded. Or failed.

unborn quiver
#

Im still not sure abot what to do with the cases

#

I mean , what would be the appropiate use of it ?

#

Updating the dashboard ?

unborn quiver
# gaunt ore Webhooks are necessary for Stripe to notify your app that a payment is successfu...
    case 'payment_intent.created':
        // El PaymentIntent fue creado
        $paymentIntent = $event->data->object;
        // Lógica específica para cuando se crea un PaymentIntent
        break;

    case 'payment_intent.payment_failed':
        // El PaymentIntent falló
        $paymentIntent = $event->data->object;
        // Lógica específica para cuando falla un PaymentIntent
        break;

    case 'payment_intent.succeeded':
        // El PaymentIntent fue exitoso
        $paymentIntent = $event->data->object;
        // Lógica específica para cuando un PaymentIntent tiene éxito
        // Esto podría incluir confirmar un pedido, actualizar inventario, enviar notificaciones, etc.
        break;
gaunt ore
#

It depends on your business logic. What do you want to happen when the payment goes through?

unborn quiver
#

If transaction is succesful to get an email on both sides or notification on the dashboard

gaunt ore
vast jettyBOT