#antona-receipts
1 messages · Page 1 of 1 (latest)
hello @tribal talon! can you check if you're sending a value in this parameter : https://stripe.com/docs/api/payment_intents/create#create_payment_intent-receipt_email ?
Hello Alex! We are not using payment intents. Will it still apply?
hmmm, can you share your account id so that I can take a closer look? your account id will look like acct_123
if you login to this page : https://dashboard.stripe.com/settings/account, it should be in the upper right hand corner
Here you go acct_1I9rO1D0MgpPWoHX
@tribal talon look like you're still using /v1/charges API, and you're passing in https://stripe.com/docs/api/charges/object#charge_object-receipt_email. Can you try omitting that and see if it stops sending receipts for you
Is there any difference between the endpoint you gave and this one @brittle umbra? I can’t seem to see the difference.
https://stripe.com/docs/api/charges/create#create_charge-receipt_email
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
one is using PaymentIntents and one is using Charges. Technically, you would want to migrate to PaymentIntents as Charges/Tokens are now deprecated.
Building an integration with the new PaymentIntents APIs allows your integration to handle dynamic payments, support authentication scenarios (such as 3D Secure), and help meet evolving payment regulations around the world (such as Strong Customer Authentication).
When will the charges stop being supported? Just so we can plan the transition
it's not that you can't continue to use it anymore, Stripe just will not upgrade or develop new features for Charges/Tokens
It's been deprecated for quite a while now, since sometime back in 2019 if i remember correctly
you can refer to this guide when you are ready to migrate : https://stripe.com/docs/payments/payment-intents/migration
Thank you for the migration guide!
There is no difference between the initial link you provided and this one right?
sorry, but which link specifically? are you referring to these?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
That’s the one you sent me ⬆️
And I’m asking if it’s the same as this one ⬇️
Is there any difference between the endpoint you gave and this one @brittle umbra? I can’t seem to see the difference.
https://stripe.com/docs/api/charges/create#create_charge-receipt_email
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ah, it's the same