Posts

Post not yet marked as solved
0 Replies
322 Views
I can't find any documentation or examples on this, I'm sorry if this is a dumb question. For some reason, this call doesn't give me any of the fields[inAppPurchasePricePoints] fields I ask for: https://api.appstoreconnect.apple.com/v1/inAppPurchasePriceSchedules/{iap_id}/manualPrices?include=inAppPurchasePricePoint&fields[inAppPurchasePricePoints]=customerPrice This is the response I'm getting: { 'type': 'inAppPurchasePrices', 'id': 'super_long_id', 'attributes': { 'startDate': None, 'endDate': '2023-07-12', 'manual': True }, 'relationships': { 'inAppPurchasePricePoint': { 'data': { 'type': 'inAppPurchasePricePoints', 'id': 'long_id' } } }, 'links': { 'self': 'https://api.appstoreconnect.apple.com/v1/inAppPurchasePrices/super_long_id' } } Why doesn't the response include the customerPrice I'm asking for? What am I missing here? Thank you for your patience and support!
Posted
by daniel3ub.
Last updated
.
Post not yet marked as solved
1 Replies
347 Views
I am new to the whole Apple API, sorry if this question is too fundamental. I find the documentation confusing. I need to retrieve the current customerPrice in US$ for the USA for one specific IAP in my app. I'm trying to use https://api.appstoreconnect.apple.com/v2/inAppPurchases/{iap_id}/pricePoints?filter[territory]=USA&limit=200 I get a list of all pricePoints for my IAP. OK, so far so good. How do I filter for the current price point only? How do I retrieve the customerPrice for that price point? Thank you very much for the help :)
Posted
by daniel3ub.
Last updated
.