I want to get all subscription groups (with product ids) in itunes connect from my backend side. I am looking at the documentation but I can not find any endpoint for that.
I mean, something similar to google which you can specify the packageName and it returns all product ids:
https://developers.google.com/android-publisher/api-ref/inappproducts/get
this.androidpublisher.inappproducts.list({
auth: this.authClient,
packageName: packageName
},
Does Apple provide an endpoint for this?
This can only be done from within your app with an SKProductsRequest. The products could be different based on the user's country (availability, pricing, etc.).
It may be easier to just store a hardcoded mapping of your product IDs -> data
on your server.