no "next" link in paged results for appstore api inAppPurchases request

Hi, I'm not getting any info on how to request the next page of results - we have nearly 2000 in-app purchasables, but I can only get the first 200:

Code Block
curl -H "Authorization: Bearer $JWT" "https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases?limit=200" | jq .
[...]
"links": {
"self": "https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases?limit=200"
},
"meta": {
"paging": {
"total": 200,
"limit": 200
}
}
}


We're experiencing a similar issue. At first, the response stopped including the next field. Since 10 days ago, the API is returning all pages instead, but with an empty data field for every page except the first one:

Code Block language
curl -X "GET" \
"https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases?cursor=Mg.ALuZC1A" \
-H "accept: application/json" \
-H "Authorization: Bearer $JWT" | jq .
{
"data":[
],
"links":{
"self":"https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases?cursor=Mg.ALuZC1A",
"first":"https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases",
"next":"https://api.appstoreconnect.apple.com/v1/apps/$ID/inAppPurchases?cursor=ZA.ALuNCzc"
},
"meta":{
"paging":{
"total":375,
"limit":50
}
}
}


We opened a ticket via Feedback Assistant but to no avail.
no "next" link in paged results for appstore api inAppPurchases request
 
 
Q