Skip to main content

eBay sends a FeedbackReceived notification to third parties subscribed on the user's behalf whenever initial feedback comments are received by that user and when updated follow-up comments are received for items in dispute. The typical flow of events is:

  1. A third party subscribes to the FeedbackReceived notification on behalf of a user.
  2. The user receives initial feedback comments or updated follow-up comments for items indispute.
  3. eBay sends the FeedbackReceived notification to the third party, indicating the user received new feedback.

eBay also sends FeedbackReceived notifications to the third party for all feedback items the user receives, either through the eBay sites or programmatically from an API or SDK.

Data Fields Returned

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

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

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

Example

Sample FeedbackReceived 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">i********=</
ebl:NotificationSignature>
    </ebl:RequesterCredentials>
  </soapenv:Header>
  <soapenv:Body>
    <GetFeedbackResponse xmlns="urn:ebay:apis:eBLBaseComponents">
      <Timestamp>2008-02-13T02:27:45.215Z</Timestamp>
      <Ack>Success</Ack>
      <CorrelationID>1********0</CorrelationID>
      <Version>553</Version>
      <Build>e553_core_Bundled_6057805_R1</Build>
      <NotificationEventName>FeedbackReceived</NotificationEventName>
      <RecipientUserID>S********1</RecipientUserID>
      <FeedbackDetailArray>
        <FeedbackDetail>
          <CommentingUser>B********1</CommentingUser>
          <CommentingUserScore>100</CommentingUserScore>
          <CommentText>Thanks for the payment!</CommentText>
          <CommentTime>2008-02-13T02:27:16.000Z</CommentTime>
          <CommentType>Positive</CommentType>
          <ItemID>2********5</ItemID>
          <Role>Buyer</Role>
          <FeedbackID>1********9</FeedbackID>
        </FeedbackDetail>
      </FeedbackDetailArray>
      <FeedbackDetailItemTotal>215</FeedbackDetailItemTotal>
      <FeedbackScore>1</FeedbackScore>
    </GetFeedbackResponse>
  </soapenv:Body>
</soapenv:Envelope>