Hello!
I am posting here in order to double-check my approach when it comes to creating a market-place and allow sellers to pick an arbitrary price for selling digital products.
As such, and that’s as far as my planning has brought me, I came up with a solution where I’d create SKUs and IPAs which represent a particular price-point like:
storeIdentifier | price |
-----------------|----------|
item_0050 | € 0.50 |
item_0100 | € 1.00 |
item_0150 | € 1.50 |
... | |
item_9999 | € 99.99 |
I do this, because it appears not to be possible to simply define a `store_product` item with a base price of €0.01 (one Euro cent) and then control it using quantity such that users would buy 1000 units of `store_product` to be charged €10.00.
As I am working on fully-separate environments, I’d have to replicate these SKUs and IPAs in all environments and mirror all of that in RevenueCat. That’s not the issue of course per-se, but I want to make sure that this approach is the best I can chose for this type of requirements.
Any advice would be much appreciated!