Question

Call Thank You Page after Successful Payment in Stripe

  • 17 June 2021
  • 2 replies
  • 623 views

I want to implement the following

  1. I use a stripe checkout page to receive payment
  2. When occur a New Subscription then call my Thank-you page

I do not know how to do it


This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 7
Badge +9

Hi @AlexE,

 

If you are looking to call a webhook/API URL after a payment is made through stripe, here is the set up you will need to build:

  1. Trigger: Use Stripe > new charge trigger to listen for new payments made
  2. Action: Use Webhook by Zapier app to make a POST/GET API call

Also, if you are referring to making the payer redirect to a new page, this wouldn’t be possible, you can however send out a thank you email.

Hi @robschmidt 

One brief question, why is it not possible to redirect to a custom url after a successful payment?

 

Thank you.