when I submit a GetOrders API request with the Created From and Created To Dates for "completed" orders, I get orders that were created prior to my Created From date.
when I use a Number of Days parameter, I get orders that are months old.
Here's a sample of the request I'm sending. what am I doing wrong?
<?xml version="1.0" encoding="utf-8"?>
<GetOrdersRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken><![CDATA[*excluded]></eBayAuthToken>
</RequesterCredentials>
<DetailLevel>ReturnAll</DetailLevel>
<ListingType>Half</ListingType>
<OrderRole>Seller</OrderRole>
<OrderStatus><![CDATA[Shipped]]></OrderStatus>
<CreateTimeFrom>2011-11-06T12:21:17.000Z</CreateTimeFrom>
<CreateTimeTo>2011-11-10T12:21:17.939Z</CreateTimeTo>
<Pagination>
<EntriesPerPage><![CDATA[200]]></EntriesPerPage>
<PageNumber><![CDATA[1]]></PageNumber>
</Pagination>
<WarningLevel><![CDATA[High]]></WarningLevel>
<ErrorHandling><![CDATA[BestEffort]]></ErrorHandling>
</GetOrdersRequest>
P.S. This is for "haf.com" orders.