Skip to main content

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

  1. A third party subscribes to the FeedbackLeft notification on behalf of a user.
  2. The user leaves initial feedback comments or updated follow-up comments for items in dispute.
  3. eBay sends the FeedbackLeft notification to the third party, indicating that the user left new feedback.

eBay also sends FeedbackLeft notifications to the third party for all feedback items the user leaves, 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 FeedbackLeft 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 FeedbackLeft 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">0********=</
ebl:NotificationSignature>
    </ebl:RequesterCredentials>
  </soapenv:Header>
  <soapenv:Body>
    <GetFeedbackResponse xmlns="urn:ebay:apis:eBLBaseComponents">
      <Timestamp>2008-02-13T02:27:42.996Z</Timestamp>
      <Ack>Success</Ack>
      <CorrelationID>1********0</CorrelationID>
      <Version>553</Version>
      <Build>20050429131630</Build>
      <NotificationEventName>FeedbackLeft</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>214</FeedbackDetailItemTotal>
      <FeedbackScore>1</FeedbackScore>
    </GetFeedbackResponse>
  </soapenv:Body>
</soapenv:Envelope>