#taxeve_api
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.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ 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/1303696946766155877
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
It's not possible to create an invoice with a Payment Intent, you'd need to use the Invoicing API directly: https://docs.stripe.com/invoicing/integration
But invoices are getting generated.
This is one of the invoices:
https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xUUJVaVhBT1ZZSmxsd0J2KOSWrbkGMgb0lrYkOb06LBaPyoIcQP7gqaqjR7xydvLjV_jKoVNCRBBMW4Cc21Vu9Temf2PaelA1GcVG
Oh, this is a receipt I think.
Yep that's a payment receipt
If you need an invoice for accounting/tax purposes then you cannot use Payment Intents directly
How can we send invoice after the payment?
This is the only way outside of using Checkout. But it'll create/send the invoice prior to payment
We are using React Native for mobile apps, is there a way we can use Checkout for that?
No we don't recommend using Checkout in native apps as it has quirky behaviour when used in a webview
Then we are stuck. Can you please suggest a solution?
I just did didn't I? Use the Invoicing API to create an invoice, which will generate a Payment Intent you can use with the native mobile Payment Sheet: https://docs.stripe.com/invoicing/integration?method=elements
That guide is what you need, except you'd substitute the Payment Element stuff for RN code
We are using Payment sheet for React Native. Will this work with that?