#Debjeet

1 messages · Page 1 of 1 (latest)

bright mothBOT
warped latch
#

Can you share the event ID (evt_xxx) that you expect to receive?

turbid loom
#

first tell me that I want to make a failed a payment of US bank account on test mode .
there is an option for insufficient balance test mode .
will that tranction will come on webhook failed section ?

warped latch
#

No! The failed section refers to your Webhook server fails to receive the events, i.e. not responding 2xx status to Stripe

turbid loom
#

so How can I get the retrieve the events in form of apis ?

#

like failed successful or pending trancstion ?

warped latch
#

Do you mean receiving in your Webhook endpoint, or you want to use an API to retrieve event details based on the event ID (evt_xxx)?

turbid loom
#

I want to retrieve the event details.
like every time new new transcation happened weather it is failed or sucessfull
I want all info.

warped latch
#

When there's an event, it will be sent to your Webhook automatically which you can use to determine whether a payment is successful or failed.

For example, if you use Checkout Session, Stripe will send checkout.session.* events to you such as checkout.session.completed and payment_intent.succeeded. Or if you want to track the failed payments, payment_intent.failed will be sent.

It should be in succeeded section in your Webhook endpoint if you have configured to listen to those events above.

If you want to retrieve the event manually via API, it can be done with Event Retrieval API: https://stripe.com/docs/api/events/retrieve

turbid loom
#

what is the GET request link?

warped latch
#

You can choose cURL for the actual request URL

turbid loom
#

the request of pending transcation how do I know that trancstion has been completed after 2-3 days ?

warped latch