# Update row after payment faster

**URL:** https://community.glideapps.com/t/update-row-after-payment-faster/51001
**Category:** Ask for Help
**Created:** [October 6, 2022, 6:00am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001 "2022-10-06T06:00:47Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![DESIGNROOT](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/designroot/32/48282_2.png) [@DESIGNROOT](https://community.glideapps.com/u/DESIGNROOT)
#### Post date: [October 6, 2022, 6:00am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/1 "2022-10-06T06:00:47Z")

</div>

Hello !

I have a simple membership system built in to access premium app content with one-time Stripe payment. So far everything is correct.

There is only one problem: the app takes about 15 sec to update the user’s status to “Premium” (by Google sheets), so after the purchase, the user still sees the “Subscribe” button and the contents don’t change to premium.

Is there a way to speed this up easily? No zapier, no Integromat…  
And if there is, a template that I can see?

Thank you!

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [October 6, 2022, 6:06am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/2 "2022-10-06T06:06:43Z")

</div>

nope, it is recorded in google sheets… so you need to wait for glide to sync… you can add a refresh button, that will write some value, like a current date to GS, that will force Glide to refresh

---

<div class="post-metadata">

### Author: ![DESIGNROOT](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/designroot/32/48282_2.png) [@DESIGNROOT](https://community.glideapps.com/u/DESIGNROOT)
#### Post date: [October 6, 2022, 6:10am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/3 "2022-10-06T06:10:22Z")

</div>

Thank you, it’s a good solution, I’ll try it.

Is this process faster by using zapier or Integromat, or will be the same issue?

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [October 6, 2022, 6:11am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/4 "2022-10-06T06:11:41Z")

</div>

the fastest is the google script, plus is free and unlimited.

---

<div class="post-metadata">

### Author: ![DESIGNROOT](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/designroot/32/48282_2.png) [@DESIGNROOT](https://community.glideapps.com/u/DESIGNROOT)
#### Post date: [October 6, 2022, 6:12am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/5 "2022-10-06T06:12:09Z")

</div>

Thank you!!

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [October 6, 2022, 6:24am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/6 "2022-10-06T06:24:30Z")

</div>

If your Glide Subscription permits, you can use Make/Zapier together with the Glide API to update the subscription details. This reduces the delay to 5 seconds or less.

---

<div class="post-metadata">

### Author: ![DESIGNROOT](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/designroot/32/48282_2.png) [@DESIGNROOT](https://community.glideapps.com/u/DESIGNROOT)
#### Post date: [October 6, 2022, 6:28am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/7 "2022-10-06T06:28:39Z")

</div>

Thank you Darren!  
Any real example?

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [October 6, 2022, 6:43am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/8 "2022-10-06T06:43:43Z")

</div>

I’m pretty sure that Bob covers it in the below tutorial:

> [@gem\_stone Monetize your membership app using Payhere + Make (Updated 2024)](https://community.glideapps.com/t/create-a-membership-app-using-payhere/26646):
>
> Updated 2024! wave Hey fellow Gliders! I just released a 3-part series on using [Payhere](https://payhere.co/?affiliate=aYXvr) + [Make](https://www.make.com/en/register?pc=robert) to monetize a Glide app! Since Glide doesn’t offer a native way of monetizing an app or accepting payments, we need to build it ourselves. I’m starting the series with demonstrating how to accept one-off payments and how to create membership apps by allowing users to subscribe to an app in order to gain access to premium content hidden behind a paywall. popcorn Enjoy! Part 1: The Setup [[M…](https://www.youtube.com/watch?v=BNZtlZkyZvs)

---

<div class="post-metadata">

### Author: ![DESIGNROOT](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/designroot/32/48282_2.png) [@DESIGNROOT](https://community.glideapps.com/u/DESIGNROOT)
#### Post date: [October 6, 2022, 7:02am UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/9 "2022-10-06T07:02:51Z")

</div>

Yes, I watched it. But I want to use Stripe…  
And I don’t know how to adapt this tutorial to Stripe… 😑

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [October 6, 2022, 12:16pm UTC](https://community.glideapps.com/t/update-row-after-payment-faster/51001/10 "2022-10-06T12:16:46Z")

</div>

Payhere is basically a stripe “extension” that allows you to embed payment links. You can do this with native stripe links, but you wouldn’t be able to embed the payment links within your Glide app.
