Website logo

Ask the seller to relist a listing

Sends an email to the seller of a listing asking that they relist the item.

URL: https://api.trademe.co.nz/v1/MyTradeMe/RequestRelist.{file_format}
HTTP Method: POST
Requires Authentication? Yes
Permission Required: MyTradeMeRead: Read your membership & listing data.
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

<RequestRelistRequest>

ListingId Integer (required) ListingId

Returns

<RequestRelistResponse>

A response that indicates whether the operation succeeded.

Success Boolean Success
Description String or null Description

Example XML Request (switch to JSON)

<RequestRelistRequest xmlns="http://api.trademe.co.nz/v1">
  <ListingId>123</ListingId>
</RequestRelistRequest>

Example JSON Request (switch to XML)

{
  "ListingId": 123
}

Example XML Response (switch to JSON)

<RequestRelistResponse xmlns="http://api.trademe.co.nz/v1">
  <Success>false</Success>
  <Description>ABC</Description>
</RequestRelistResponse>

Example JSON Response (switch to XML)

{
  "Success": false,
  "Description": "ABC"
}