Update your feedback
Modifies feedback the authenticated user has posted against a listing.
URL: |
https://api.trademe.co.nz/v1/mytrademe/Feedback/Update.{file_format} |
HTTP Method: |
POST |
Requires Authentication? |
Yes |
Permission Required: |
MyTradeMeWrite: Maintain your watchlist, answer questions and post comments. |
Supported Formats: |
XML, JSON |
Rate Limited? |
Yes |
URL parameters
file_format |
Enumeration (required) |
The format of the response.
|
|
xml |
Serialize responses into XML.
|
json |
Serialize responses into JSON.
|
|
POST Data
<FeedbackUpdateRequest>
FeedbackType |
Enumeration (required) |
FeedbackType
|
|
Negative |
0 |
Negative
|
Positive |
1 |
Positive
|
Neutral |
2 |
Neutral
|
TradeMe |
3 |
TradeMe
|
|
Text |
String (required) |
Text
|
FeedbackId |
Integer (required) |
FeedbackId
|
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
|
<FeedbackUpdateRequest xmlns="http://api.trademe.co.nz/v1">
<FeedbackType>Negative</FeedbackType>
<Text>ABC</Text>
<FeedbackId>123</FeedbackId>
</FeedbackUpdateRequest>
{
"FeedbackType": 0,
"Text": "ABC",
"FeedbackId": 123
}
<FeedbackResponse xmlns="http://api.trademe.co.nz/v1">
<Success>false</Success>
<Description>ABC</Description>
<StatusCode>Ok</StatusCode>
<FeedbackId>123</FeedbackId>
</FeedbackResponse>
{
"Success": false,
"Description": "ABC",
"StatusCode": 0,
"FeedbackId": 123
}