Need some help here with something that should be simple.
I need a way to uniquely track a single item whose ID is generated when the buy now button is created.
Here is the expected flow:
* User must unlock a web feature before use
* User can click a buy now button(e-junkie button) to unlock the functionality
* I need to identify the feature they unlock since the feature is dynamically created by the user before purchase and given an ID by me
* I need to track the custom ID roundtrip and get an alert once the item is purchased so I can unlock it using the ID
It won't work for me to hard code a bunch of SKU's here on the site, I really need to add the id to the button and once charged get this id with the URL data sent back to my Variant handler URL.
Whats the correct way to approach this type of situation.
-Joe