#cherryl_api

1 messages · Page 1 of 1 (latest)

floral escarpBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1326374557132783646

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

hot heart
#

Hi! Could you provide me with more information / screenshots on what you are trying to do?

placid hatch
#

Hi ! Thanks for the response. On the Checkout process instead of sending them to the default confirmation payment, I wanted them to send via different link or another Thank you Page

#

this is very easy for adding on the Payment Links

#

What if I am trying to add it on a certain product not on the Payment links ?

hot heart
#

What do you mean by adding it on a certain product?

placid hatch
#

certain product on the Product Catalog , I believe this needs to add an API on this but I am unsure how to edit API on Stripe

#

To redirect the checkout process of a specific product catalog to a custom Thank You page instead of using Stripe's default, you can follow these steps:

  1. Set Up the Thank You Page
    Create your custom Thank You page on your preferred platform (e.g., ClickFunnels, Membership.io, or your website builder).
    Ensure the page URL is live and accessible.
  2. Configure the Redirect in Stripe
    For Payment Links:

Navigate to your Stripe Dashboard.
Go to Products > Select the specific product.
Create a Payment Link for the product.
In the Payment Link settings, find the "After payment" section.
Enter the URL of your custom Thank You page in the "Redirect customers after payment" field.
Save the changes.
For Stripe Checkout Sessions (Custom Integration): If you're using Stripe's API to create a Checkout Session, include the success_url parameter in your code. Example:

json
Copy code
{
"success_url": "https://your-custom-thank-you-page.com",
"cancel_url": "https://your-cancel-page.com",
...
}
3. Test the Setup
Complete a test transaction to ensure the user is redirected to the correct Thank You page after payment.
4. Verify Conversion Tracking (Optional)
If you’re using tools like Google Tag Manager or Facebook Pixel, ensure the tracking code is properly implemented on the Thank You page to capture conversion events.
Let me know if you need detailed guidance for any specific platform or API!