Website logo

Remove your feedback

Removes feedback the authenticated user has posted against a listing.

URL: https://api.trademe.co.nz/v1/mytrademe/Feedback/{feedbackId}.{file_format}
HTTP Method: DELETE
Requires Authentication? Yes
Permission Required: MyTradeMeWrite: Maintain your watchlist, answer questions and post comments.
Supported Formats: XML, JSON
Rate Limited? Yes

URL parameters

feedbackId Integer (required)

The ID of the feedback to remove.

file_format Enumeration (required) The format of the response.
xml Serialize responses into XML.
json Serialize responses into JSON.

Returns

<FeedbackResponse>

Details on whether the operation was successful.

Success Boolean Success
Description String or null Description
StatusCode Enumeration StatusCode
Ok 0 Ok
AlreadyPlaced 1 AlreadyPlaced
AlreadyEdited 2 AlreadyEdited
ErrorDeleting 3 ErrorDeleting
MemberNotFound 4 MemberNotFound
NotSelf 5 NotSelf
IncorrectMember 6 IncorrectMember
NotWinner 7 NotWinner
NotWinnerOffer 8 NotWinnerOffer
DatabaseError 10 DatabaseError
NotSupported 11 NotSupported
NoFixedPriceOffer 12 NoFixedPriceOffer
InvalidFeedback 13 InvalidFeedback
FeedbackId Integer FeedbackId

Example XML Response (switch to JSON)

<FeedbackResponse xmlns="http://api.trademe.co.nz/v1">
  <Success>false</Success>
  <Description>ABC</Description>
  <StatusCode>Ok</StatusCode>
  <FeedbackId>123</FeedbackId>
</FeedbackResponse>

Example JSON Response (switch to XML)

{
  "Success": false,
  "Description": "ABC",
  "StatusCode": 0,
  "FeedbackId": 123
}