As I look at the API calls logged by Stripe there seems to be no record of this data being passed to it. Can you please confirm if I've set this up wrong, or if this is expected behaviour?
I believe the entity you are displaying here is a stripe order entity, but all the customer details are stored on a customer entity. You'll need to look that customer up using the customer ID in your order entity to access that info.
Customer details passed to stripe?
When setting up Stripe as a payment gateway, one defines the order properties of the billing address. https://vendr.net/docs/payment-providers/stripe/1.1.0/stripe-checkout/getting-started/configuring-umbraco/ The documentation says this is for Radar verification.
As I look at the API calls logged by Stripe there seems to be no record of this data being passed to it. Can you please confirm if I've set this up wrong, or if this is expected behaviour?
Hi David,
I believe the entity you are displaying here is a stripe order entity, but all the customer details are stored on a customer entity. You'll need to look that customer up using the customer ID in your order entity to access that info.
You can see here how we pass all the info through as customer details https://github.com/vendrhub/vendr-payment-provider-stripe/blob/dev/src/Vendr.PaymentProviders.Stripe/StripeCheckoutPaymentProvider.cs#L57-L124
Matt
It's clearly going over. I just hadn't seen the customer section. I imagined it would go over with the payment intent.
I think I'll just say the Stripe API is certainly fun 😉
is working on a reply...