hi jeffrey, im calling to get order list first and based on that order list im trying to fetch lineitem in both cases i have to do off set. fetching orderlist its not that delay but when making recursive calls to get line item based on order list its taking long time like hours
Why do you need a list of orders going back months?
Assuming that you're hitting the endpoint '{url}/v3/merchants/{merchantId}/items',
items past the 1000-item limit can be retrieved by appending '?limit=999&offset=n' to the URL.
For the next 999 items, set offset to 1... For the 999 items after that, set offset to 2... And so on
i understand, but i need at least 3month of historic data to create some analysis based on it then once i have that ill be doing incremental load everyday or every week but for now i need historic data.
the link you sent will be helpful in making recursive calls?
3 People are following this question.