Skip to main content
Answer

Issue with app_user_id Query Parameter Causing 404 Error in Web Purchase Link

  • September 24, 2025
  • 2 replies
  • 41 views

Forum|alt.badge.img

I am currently integrating RevenueCat's Web Purchase Links into my Webflow project for handling subscriptions. According to the RevenueCat documentation, I need to append app_user_id as a query parameter to the purchase link to associate the purchase with the correct authenticated user.

Here is the link format I am using: https://pay.rev.cat/sandbox/rim********dasa/?app_user_id=897274573489

Any guidance or suggestions would be greatly appreciated!

Best answer by guilherme

Hey ​@nita-akoh-792301 ,

The appending of the app user id is actually done on the URL path

The app user id is appended as a URL parameter (app_user_id) so you can further customize the post-purchase experience

 as so:

https://pay.rev.cat/<someProductionTokenWeGenerate>/<yourAppUserId>

fields like adding email then yes, should be as query parameters as mentioned in this section here!

Could you try adding the app user id to the URL path instead and see if that works?

This post has been closed for comments

2 replies

guilherme
RevenueCat Staff
Forum|alt.badge.img+6
  • RevenueCat Staff
  • Answer
  • September 26, 2025

Hey ​@nita-akoh-792301 ,

The appending of the app user id is actually done on the URL path

The app user id is appended as a URL parameter (app_user_id) so you can further customize the post-purchase experience

 as so:

https://pay.rev.cat/<someProductionTokenWeGenerate>/<yourAppUserId>

fields like adding email then yes, should be as query parameters as mentioned in this section here!

Could you try adding the app user id to the URL path instead and see if that works?


Forum|alt.badge.img

Thank you so much for your time and support. It worked.