I’m trying to build a search on the orders API and would like to filter out all orders that do not have a customer_id
. Is this possible?
At this time there isn’t a query that would return all orders without the customer_id
. You’ll need to SearchOrders
for all the orders and parse the results for ones that don’t have the customer_id
.