GetAccount returns data that falling outside the specified dates Find the answer to your question
Advanced Search Product -Select Product- Trading API Merchandising API Feedback API Product Services Sandbox Others MIP Media API Notification API Identity API Charity API Taxonomy API Catalog API Recommendation API Compliance API Logistics API Finances API(Alpha) Negotiation API Sell Feed API Marketing Ads API Account API Inventory API Fulfillment API Marketing Promotion API Analytics API Metadata API Offer API Marketplace Insights API Deal API Marketing API Feed API Browse API  Order API  Analytics API Key Management API Cancellation API Case Management API Inquiry API Return API Category -Select- Getting Started Sample Code Troubleshooting HowTo's / Best Practices No Value 
Language -Select- C# Flex Java JavaScript PHP VB.NET VB6 
Format -Select- All XML SOAP JSON Name Value N/A 
SDK -Select- .NET Java JavaScript Flax/Flash Mobile - iOS None 
Sort by Default Summary New Description Date Updated 
Sort order Descending Ascending 
Search 
Published: March 02 2007, 6:05:00 PM Updated: August 04 2022, 7:23:00 AM 
When I sending the GetAccount request as showing below, the api reports the Accounts that dated outside the specified dates ( <Date>2007-02-16T07:49:03.000Z</Date>, for example) <GetAccountRequest xmlns="urn:ebay:apis:eBLBaseComponents">      <DetailLevel>ReturnAll</DetailLevel>      <Version>501</Version>      <BeginDate>2007-03-02T07:25:05-07:00</BeginDate>      <EndDate>2007-03-02T11:04:34-07:00</EndDate>      <Pagination>        <EntriesPerPage>500</EntriesPerPage>        <PageNumber>1</PageNumber>      </Pagination>      <AccountEntrySortType>AccountEntryCreatedTimeAscending</AccountEntrySortType>    </GetAccountRequest> Why the data range tags do not work?
Summary 
  The BeginDate   and EndDate  date range filters are the optional properties for GetAccount   API call. The call  returns data that limited within the data range specified only when  AccountHistorySelection   is set  to BetweenSpecifiedDates   in the request as below.
<? xml version="1.0" encoding="utf-8"  ?> 
        < GetAccountRequest xmlns =" urn:ebay:apis:eBLBaseComponents "> 
         < BeginDate > 2007-03-02T01:25:05-07:00 </ BeginDate > 
 
                < EndDate > 2007-03-02T10:25:05-07:00 </ EndDate > 
 
               < Pagination > 
                      < EntriesPerPage > 50 </ EntriesPerPage > 
 
                      < PageNumber > 1 </ PageNumber > 
 
       </ Pagination > 
 
               < AccountHistorySelection > BetweenSpecifiedDates </ AccountHistorySelection >                 < RequesterCredentials > 
 
                     < eBayAuthToken > XXXX </ eBayAuthToken > 
 
          </ RequesterCredentials > 
 
    </ GetAccountRequest > 
  
How well did this answer your question? Answers others found helpful