Skip to main content

eBay sends a BestOfferDeclined notification to third parties subscribed on the buyer's behalf whenever a seller rejects the buyer's Best Offer. The typical flow of events is:

  • A third party subscribes to the BestOfferDeclined notification on behalf of a buyer.
  • The buyer's Best Offer is rejected by the seller.
  • eBay sends the BestOfferDeclined notification to the third party, indicating the buyer's Best Offer was rejected.

eBay also sends BestOfferDeclined notifications to the third party each time a seller rejects a Best Offer placed by the buyer, either through the eBay site or programmatically from an API or SDK.

Data Fields Returned

API Call that displays this notification: GetBestOffers with ReturnAll detail level

The data fields returned by the BestOfferDeclined notification are the same as those returned by GetBestOfferResponse with ReturnAll details requested. Refer to the GetBestOffers call reference documentation for additional information.

Refer to SOAP Message Body for information about the standard elements returned for all notifications.

Example

Sample BestOfferDeclined Notification

<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://
www.w3.org/2001/XMLSchema" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Header>
    <ebl:RequesterCredentials soapenv:mustUnderstand="0" xmlns:ns="urn:ebay:apis:eBLBaseComponents"
xmlns:ebl="urn:ebay:apis:eBLBaseComponents">
      <ebl:NotificationSignature xmlns:ebl="urn:ebay:apis:eBLBaseComponents">NSQ3JxY+kDkwlTP+oFPT6g==</
ebl:NotificationSignature>
    </ebl:RequesterCredentials>
  </soapenv:Header>
  <soapenv:Body>
    <GetBestOffersResponse xmlns="urn:ebay:apis:eBLBaseComponents">
      <Timestamp>2008-02-13T03:16:34.637Z</Timestamp>
      <Ack>Success</Ack>
      <CorrelationID>1********0</CorrelationID>
      <Version>553</Version>
      <Build>20050429131630</Build>
      <NotificationEventName>BestOfferDeclined</NotificationEventName>
      <RecipientUserID>S********1</RecipientUserID>
      <BestOfferArray>
        <BestOffer>
          <BestOfferID>6********2</BestOfferID>
          <ExpirationTime>2008-02-15T03:16:17.000Z</ExpirationTime>
          <Buyer>
            <Email>b********er@e********l.com</Email>
            <FeedbackScore>1</FeedbackScore>
            <RegistrationDate>2004-02-23T23:50:13.000Z</RegistrationDate>
            <UserID>B********1</UserID>
          </Buyer>
          <Price currencyID="USD">500.0</Price>
          <Status>Declined</Status>
          <Quantity>1</Quantity>
          <BestOfferCodeType>BuyerBestOffer</BestOfferCodeType>
        </BestOffer>
      </BestOfferArray>
      <Item>
        <BuyItNowPrice currencyID="USD">1000.0</BuyItNowPrice>
        <ItemID>2********3</ItemID>
        <ListingDetails>
          <EndTime>2008-02-18T03:15:32.000Z</EndTime>
        </ListingDetails>
        <Location>S********A</Location>
        <Title>Test BestOfferDeclined notify</Title>
      </Item>
    </GetBestOffersResponse>
  </soapenv:Body>
</soapenv:Envelope>