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

The total of the feedback taking unique postive and negative counts into account.

TotalPositive Integer

The number of positive feedback given.

UniquePositive Integer

The number of individuals who have left feedback.

TotalNeutral Integer

The number of neutral feedback given.

TotalNegative Integer

The number of negative feedback given.

UniqueNegative Integer

The number of negative feedback given.

Nickname String or null

The nickname of the member. Some characters may be changed, if we determine it is necessary to protect the member's privacy.

LastLoggedIn DateTime

The time the member last logged in.

DateJoined DateTime

The date the member joined.

TwoMonthListingCount Integer

The number of listing in the past 2 months by this member.

IsAuthenticated Boolean

Indicates whether the member has been authenticated.

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
}