Stripe inbuilt payment forms

Hi Everyone,

I was wondering whether how to add stripe inbuilt payment form so that anything bought on the card could be purchased right away, I know about invoice email but somehow that does not work on projects life food ordering application.

Thanks,

Hi, I may have some clarifying questions here:

1/Do you want users to pay directly inside the app, or is it acceptable if they are redirected to a Stripe-hosted checkout page?

2/What do you mean by “anything bought on the card could be purchased right away”?

3/Are you looking for a one-time payment solution, or do you also need to support subscriptions or recurring payments?

Hi,
Answer 1:- Either way is fine to me but preferably is inside the app.
Answer 2:- Its a food ordering app, so customer needs to buy the order right away.
Answer 3:- Its one time payment solution.

Thanks

Glide currently doesn’t support fully embedded Stripe payment forms within the app interface. Instead, users can be redirected to a secure Stripe Checkout page to complete their payment.

  • User clicking a “Generate Invoice” button, or just call it “Pay”.
  • Your flow use a Call API action to generate a Stripe Checkout link.
  • You bring that Stripe Checkout link back to your database, and open that link in a new window for the user to pay.
  • In Stripe, add a webhook to listen to completed payments. On payment completed, send a payload to Glide to validate that the payment has been completed so you can move the user to the next screen (something like “Thank you for purchasing”).

While this approach works for MVPs or small-scale projects, Glide may not be the best fit for high-volume, real-time transactional apps like food ordering or ride-hailing, in my honest opinion.