#Erith Ikezawa
1 messages · Page 1 of 1 (latest)
That shouldn't be happening as far as I can tell. You should have a a Charge object for successful payments. Where is your webhook handler looking for the Charge?
I'm fetching the event object, then specifically looking for it in $event->data->object
Are you able to console log the payload to check it manually? It should be there under latest_charge: https://stripe.com/docs/api/payment_intents/object#payment_intent_object-latest_charge
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Oh, ok. Paiment Intent no longer fetches the full charge object, just the charge id. I can work with that. Thank you