Hey guys, first time App developer and going to launch an app maybe next month.Is there a walkthrough or general best way to implement a subscription plan for a Public Admin App once a merchant installs it?
I assume the steps might be something like this:
-
Users clicks a subscribe button
-
This fires the appSubscriptionCreate mutation
-
We extract the Confirmation URL from the response in the mutation after Step 2,
-
Route the merchant to the Confirmation URL
-
They accept the payment and are then re-directed to the returnUrl as specified in appSubscriptionCreate mutation.
I assume it will be for the app developer to somehow save this merchant into our DB that this merchant has subscribed to our app?
For context, I will only have one subscription plan of 500 USD paid once per year.