Closed guoliesheng closed 2 years ago
are you sure you are using MWS or the newer, modern Selling Partner API (SP-API) ? https://developer.amazonservices.com/
What programming language are you using? Java? C# ? Python? Node.js ? or ?
@yiiprogrammer I am sure! This problem occure when i migrate my program from MWS to SP-API. In MWS ,ListFinancialEvents's request parameters include FinancialEventGroupId,PostedAfter and PostedBefore (See in http://docs.developer.amazonservices.com/en_US/finances/Finances_ListFinancialEvents.html). But in SP-API ,it only contain PostedAfter and PostedBefore (See in https://github.com/amzn/selling-partner-api-docs/blob/main/references/finances-api/financesV0.md#listfinancialevents)
I need to show all the finance group's detail(include status,event detail etc). In MWS,I just need to request ListFinancialEvents(combine groupId and posted date request param) and save data daily when the finance group is open . But in SP-API, ListFinancialEvents return all group finance event during period, and I can't distinguish the evnet detail belong which finance group. If using listFinancialEventsByGroupId , it return the group's event detail.If i want to keep the data is newest,i must delete elder data before save the newest data. I strongly recommend that add groupId to request parameters
This is a very old issue that is probably not getting as much attention as it deserves. We encourage you to check if this is still an issue after the latest release and if you find that this is still a problem, please feel free to open a new issue and make a reference to this one.
FinanceAPI provide listFinancialEventsByGroupId and listFinancialEvents to obtain the finance event detail. When I need to get finance event daily and classify event, it can't meet my requirement. Why not provide the api contain groupId and post date that same with MWS.