Website logo

Retrieve member feedback counts

Returns feedback summary information for a member.

URL: https://api.trademe.co.nz/v1/member/{memberId}/FeedbackCount.{file_format}
HTTP Method: GET
Requires Authentication? Yes
Permission Required: None
Supported Formats: XML, JSON
Rate Limited? Yes

URL parameters

memberId Integer (required)

The ID of the member to retrieve feedback summary information for.

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

Query String parameters

since DateTime (optional)

Ignores any feedback from before this date.

Returns

<FeedbackCount>

TotalCount Integer TotalCount
TotalPositive Integer TotalPositive
UniquePositive Integer UniquePositive
TotalNeutral Integer TotalNeutral
TotalNegative Integer TotalNegative
UniqueNegative Integer UniqueNegative
Nickname String or null Nickname
LastLoggedIn DateTime LastLoggedIn
DateJoined DateTime DateJoined
TwoMonthListingCount Integer TwoMonthListingCount
IsAuthenticated Boolean IsAuthenticated

Examples

https://api.trademe.co.nz/v1/Member/5690/FeedbackCount.xml

Example XML Response (switch to JSON)

<FeedbackCount xmlns="http://api.trademe.co.nz/v1">
  <TotalCount>123</TotalCount>
  <TotalPositive>123</TotalPositive>
  <UniquePositive>123</UniquePositive>
  <TotalNeutral>123</TotalNeutral>
  <TotalNegative>123</TotalNegative>
  <UniqueNegative>123</UniqueNegative>
  <Nickname>ABC</Nickname>
  <LastLoggedIn>2018-01-01T00:00:00Z</LastLoggedIn>
  <DateJoined>2018-01-01T00:00:00Z</DateJoined>
  <TwoMonthListingCount>123</TwoMonthListingCount>
  <IsAuthenticated>false</IsAuthenticated>
</FeedbackCount>

Example JSON Response (switch to XML)

{
  "TotalCount": 123,
  "TotalPositive": 123,
  "UniquePositive": 123,
  "TotalNeutral": 123,
  "TotalNegative": 123,
  "UniqueNegative": 123,
  "Nickname": "ABC",
  "LastLoggedIn": "\/Date(1514764800)\/",
  "DateJoined": "\/Date(1514764800)\/",
  "TwoMonthListingCount": 123,
  "IsAuthenticated": false
}