Respond to feedback
Replies to feedback placed against a listing where the authenticated user was the seller.
URL: |
https://api.trademe.co.nz/v1/mytrademe/Feedback/Reply.{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
<FeedbackReplyRequest>
FeedbackId |
Integer (required) |
FeedbackId
|
Text |
String (required) |
Text
|
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
|
<FeedbackReplyRequest xmlns="http://api.trademe.co.nz/v1">
<FeedbackId>123</FeedbackId>
<Text>ABC</Text>
</FeedbackReplyRequest>
{
"FeedbackId": 123,
"Text": "ABC"
}
<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
}