getting orders by - filter by orderfulfillmentstatus
I am using the eBay REST API to retrieve orders and would like to filter only those orders whose orderfulfillmentstatus is "fulfilled" (i.e., orders that have been fully fulfilled).
I am currently using the GET /sell/fulfillment/v1/order endpoint and leveraging the filter parameter to retrieve orders based on their creation date, last modification date However, I couldn't find specific documentation on how to filter only the orders that are completely fulfilled. is there any way to get it ?
Can anyone guide me on the correct filter syntax or query parameter to use for fetching only the fulfilled orders?
Looking forward to any insights or example queries.
mybageecha_365
Posted 1 year ago·Last reply 1 year ago
1 comment
znts-wholesale-global
·1 year agoYou have to use the filter in a combination of 2 status values.
You can't use fulfilled alone, you have to use fulfilled and in progress.
for example
https://api.ebay.com/sell/fulfillment/v1/order?filter=orderfulfillmentstatus:{FULFILLED|IN_PROGRESS}
Then you can pick only where status is fulfilled in your code.