GetAllBidders does not return the Bid History like the site
Find the answer to your question
Advanced Search
Products
Question
Why does the call GetAllBidders not return the Bid History like the site?
Answer
| User ID | Bid Amount | Date of bid |
| dts1 |
US $5.50 | |
| dts2 |
US $5.00 | |
| dts1 |
US $4.00 | |
| dts2 |
US $3.00 | |
| dts1 |
US $2.00 |
GetAllBidders will return only two offers in the BidArray corresponding to the highest bids placed by each of the users.
Here is the GetAllBidders request:
<?xml version="1.0" encoding="utf-8"?>
<GetAllBiddersRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>471</Version>
<ItemID>110002988343</ItemID>
<CallMode>ViewAll</CallMode>
<RequesterCredentials>
<eBayAuthToken>*****</eBayAuthToken>
</RequesterCredentials>
</GetAllBiddersRequest>
This is the corresponding Response:
<?xml version="1.0" encoding="utf-8"?>
<GetAllBiddersResponse xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2006 07 31T18:23:35.839Z</Timestamp>
<Ack>Success</Ack>
<Version>471</Version>
<Build>e471_core_Bundled_3272750_R1</Build>
<BidArray>
<Offer>
<Action>Bid</Action>
<Currency>USD</Currency>
<MaxBid currencyID="USD">5.5</MaxBid>
<Quantity>1</Quantity>
<SecondChanceEnabled>true</SecondChanceEnabled>
<SiteCurrency>USD</SiteCurrency>
<TimeBid>2006 07 31T18:23:06.000Z</TimeBid>
<HighestBid currencyID="USD">5.5</HighestBid>
<ConvertedPrice currencyID="USD">5.5</ConvertedPrice>
<User>
<AboutMePage>false</AboutMePage>
<Email>dts1@ebay.com</Email>
<FeedbackScore>1</FeedbackScore>
<FeedbackPrivate>false</FeedbackPrivate>
<FeedbackRatingStar>None</FeedbackRatingStar>
<IDVerified>true</IDVerified>
<eBayGoodStanding>true</eBayGoodStanding>
<NewUser>false</NewUser>
<RegistrationDate>1995 01 01T11:59:59.000Z</RegistrationDate>
<Site>US</Site>
<Status>Confirmed</Status>
<UserID>dts1</UserID>
<UserIDChanged>false</UserIDChanged>
<UserIDLastChanged>2005 11 14T20:24:29.000Z</UserIDLastChanged>
<VATStatus>NoVATTax</VATStatus>
<BuyerInfo>
<ShippingAddress>
<Country>CustomCode</Country>
<PostalCode>95125</PostalCode>
</ShippingAddress>
</BuyerInfo>
</User>
</Offer>
<Offer>
<Action>Bid</Action>
<Currency>USD</Currency>
<MaxBid currencyID="USD">5.0</MaxBid>
<Quantity>1</Quantity>
<SecondChanceEnabled>true</SecondChanceEnabled>
<SiteCurrency>USD</SiteCurrency>
<TimeBid>2006 07 31T18:22:40.000Z</TimeBid>
<HighestBid currencyID="USD">5.0</HighestBid>
<ConvertedPrice currencyID="USD">5.0</ConvertedPrice>
<User>
<AboutMePage>false</AboutMePage>
<Email>Invalid Request</Email>
<FeedbackScore>1</FeedbackScore>
<FeedbackPrivate>false</FeedbackPrivate>
<FeedbackRatingStar>None</FeedbackRatingStar>
<IDVerified>true</IDVerified>
<eBayGoodStanding>true</eBayGoodStanding>
<NewUser>false</NewUser>
<RegistrationDate>2000 01 01T11:59:59.000Z</RegistrationDate>
<Site>US</Site>
<Status>Confirmed</Status>
<UserID>dts2</UserID>
<UserIDChanged>false</UserIDChanged>
<UserIDLastChanged>2005 11 14T20:24:29.000Z</UserIDLastChanged>
<VATStatus>NoVATTax</VATStatus>
<BuyerInfo>
<ShippingAddress>
<Country>CustomCode</Country>
<PostalCode>95125</PostalCode>
</ShippingAddress>
</BuyerInfo>
</User>
</Offer>
</BidArray>
<HighBidder>dts1</HighBidder>
<HighestBid currencyID="USD">5.5</HighestBid>
<ListingStatus>Completed</ListingStatus>
</GetAllBiddersResponse>