Missing 'next' element & 'limit' parameter not working

Hi,

When calling the endpoint to list all the pricePoints per app:

https://api.appstoreconnect.apple.com/v1/apps/xxxxxxxx/pricePoints

The response does not seem correct because there is no next element returned.

Not only that but when setting different values in the limit parameter, the value of limit and total of the meta object is always the same. For example:

  • Example #1
https://api.appstoreconnect.apple.com/v1/apps/xxxxxxxx/pricePoints?limit=1

response:

'meta': {'paging': {'total': 1, 'limit': 1}}
  • Example #2
https://api.appstoreconnect.apple.com/v1/apps/xxxxxxxx/pricePoints?limit=5

response:

'meta': {'paging': {'total': 5, 'limit': 5}}
  • Example #3
https://api.appstoreconnect.apple.com/v1/apps/xxxxxxxx/pricePoints?limit=200

response:


'meta': {'paging': {'total': 200, 'limit': 200}}

Am I doing something wrong or is there a bug in the API?