#dissarion_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question. Thank you for your patience!
âąď¸ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1214155106103066685
đ Have more to share? You can add more detail below, including code, screenshots, videos, etc.
Do you know what is the payment_method id ? or the payment_intent id ?
I don't know payment_method id. payment_intent.id is pi_3OqYMFAyniJ4oNK00dRlgtU7
I need to trigger a specific payment method to make sure that my webhook is able to handle all activated payment methods
You can't filter the events by resources using the public api https://docs.stripe.com/api/events/list
Are you looking for this event evt_3OqYMFAyniJ4oNK008TKJr6c ?
You can use your dashboard to see find it
You can find all the related events via your dashboard:
https://dashboard.stripe.com/test/payments/pi_3OqYMFAyniJ4oNK00dRlgtU7
You refer to the Events and logs section
But I don't see any klarna attempts
it' was using the 4242 card payment
Yes, exactly. I'm looking how I can trigger the event where payment method is Klarna
Thank you for the filtering method, but I need to trigger an event from Stripe CLI. I'm looking for something like that
stripe trigger payment_intent.succeeded --override payment_method=Klarna
Ah I though you want to search for a particular event, let me check...
What you need to do is to collect a test klarna payment method
Sorry for misleading you
Yes
Ah no you can't setup a Klarna payment for future use :
https://docs.stripe.com/payments/payment-methods/integration-options#additional-api-buy-now-pay-later
Actually the only option I'm seeing is to make a payment using Checkout Session and Klarna in test mode in order to generate that particular event
Ok. Got it. Thank you for the help!