How do I create subscription plans for my Glide app?

Hello,

I would like to create subscription plans for my app.

The structure: Webflow (Landing page) > Subscription plan > Access to my Glide app.

I can’t find any tutorial or anything to do this, yet it’s the most important thing in an app xD. If someone could guide me it would be a great help. Thanks a lot!

I know I can do it with zapier. But I don’t know how

Once the user pays for your subscription, let’s say it’s in Stripe, you can write a row to your users table/update a row in your users table to certify that the user has paid.

This means setting up a scenario in Make or Zapier to run everytime there’s a new Stripe payment.

Assuming your Users table is in Glide Tables:

  • Check if it comes from your “app subscription” product (in case you have multiple products), and if it’s the first time they have paid for that product (in case you do monthly subscription, you don’t want to write a row every time).

  • Write a new row using the Glide API.

  • Only allow access to the app for users in the User Profiles table.

Alternatively, if you build your User Profiles table in Google Sheets:

  • Check if it comes from your “app subscription” product (in case you have multiple products), and if it’s the first time they have paid for that product (in case you do monthly subscription, you don’t want to write a row every time).

  • Use the email associated with the payment to check if it already exists in the User Profiles table or not. If yes, update a “Paid?” column to true, else write a new row and make sure the “Paid?” column is true.

  • Use conditional visibility to hide content from people who don’t have the “Paid?” column checked.

2 Likes