Easiest way to accept payments in a Tadabase app?

What’s the easiest way to set up payments in an app?

We use Stripe currently, but I don’t see an easy way to integrate it. Is it done with the Stripe Pipe? Would it be easier to embed a Stripe Checkout or something?

I basically just need an order form where users can select products and submit their order.

Thanks!

Hi @mattb

You can use the stripe pipe with the “create checkout session” api call.

I can go into more detail with a video but essentially what you’re doing is passing a price_id for a particular product you have in stripe. In return you get a session_id. With some JavaScript on the page, you can then load a checkout session in a new page.

@moe has a breakdown in this thread but we can do much more with it if need be.