I need to get updated and created orders for some exact date? GetOrdersAsync #737
Unanswered
dmitriy7777
asked this question in
Q&A
Replies: 1 comment
-
Is it correct if I just update ParameterOrderList with "LastUpdatedAfter " and "LastUpdatedBefore " instead of "CreatedAfter" and "CreatedBefore"? : |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I call:
var orderParams = new ParameterOrderList
{
MarketplaceIds = MarketplaceIdUtils.GetMarketplaceIds(),
CreatedAfter = pageableRequest.Params.DateRange.TimeFrom,
CreatedBefore = pageableRequest.Params.DateRange.TimeTo,
MaxNumberOfPages = 1,
MaxResultsPerPage = pageableRequest.PageSize,
};
Orders.GetOrdersAsync(orderParams )
I do not get updated orders but only new one.
Do I need to change somehow orderParams to get updated orders?
For example order was created 10.05.2024 and updaed 11.05.2024
I need all updated and created orders for this date 11.05.2024.
How do I need to construct request parameters and request itself?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions