#expensiveee
1 messages · Page 1 of 1 (latest)
"stripe": "^12.18.0",
It looks like those params weren't added until 13.0.0 https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md#13100---2023-10-11
Ok worked
Now I have another quesiton, is there a way to have customer statement descriptors ?
I'd have to create a payment intent first no?
Statement descriptors can be set at the account level and per payment, so if you want it to be per customer you'd need to set it per payment and track what the custom descriptor is per customer
When saying statement descriptors, it's what's being shown on the bank statement of the customer correct?
Yes mostly, it is ultimately up to the bank what to show on the statement, so sometimes they ignore the statement descriptor that we send and use their own
How do they define their own? That something you know?
Also, how do I have that on a payment-level?
They would send a String to you and then you would set that string as the statement descriptor https://stripe.com/docs/api/payment_intents/object#payment_intent_object-statement_descriptor
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Though it is unusual for customers to directly set that. Can you tell me more about your use case?
No no I'm not looking for the customer to custom the descriptor, I wanna do it for payments
My question is, how can I do it if on checkout I don't have the statement_descriptor field?
I guess my question would be, how do I use a payment intent for a checkout session
Is it even doable