Hey,
I've been utilizing the v1/salesReports endpoint to retrieve a daily summary sales report. Below is an example of the query I use:
Example query
https://api.appstoreconnect.apple.com/v1/salesReports?filter[vendorNumber]=***&filter[reportType]=SALES&filter[reportSubType]=SUMMARY&filter[frequency]=DAILY&filter[reportDate]=2024-01-20&filter[version]=1_0
Starting today (23.01.24) I encountered an error stating: :
The version parameter you have specified is invalid. The latest version for this report is 1_1.
This is confusing because according to the documentation, the SALES report should use version 1_0. I attempted to use version 1_1, but it resulted in a 404 error with the message: There were no sales for the date specified.
Interestingly, when I change the frequency to WEEKLY
, the request with version 1_0 is processed successfully and contains data.
Is this discrepancy a known issue, or has there been a recent change in the API that I might have missed?