Method | Description | |
---|---|---|
MemberFeedbackById ( string id, MemberFeedbackCriteria criteria ) : Feedback |
Performs the Membership Method: Retrieve feedback for a member. Creates a query string using the parameters provided - the criteria parameter can be null if it is not required for the request. DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberFeedbackByQueryString ( string query ) : Feedback |
Performs the Membership Method: Retrieve feedback for a member using the "query" string provided - should be the "Search/Member/{member_id}/Feedback.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberFeedbackCountById ( string id ) : FeedbackCount |
Performs the membership method: Retrieve member feedback summary (counts). Creates a query string using the member id provided. DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberFeedbackCountByQueryString ( string query ) : FeedbackCount |
Performs the membership method: Retrieve member feedback summary (counts) using the "query" string provided - should be the "Search/Member/{member_id}/FeedbackCount.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberId ( string query ) : MemberId |
Performs the Membership Method: Retrieve member ID using the "query" string provided - should be the "Member/{member_nickname}.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberIdByNickname ( string nickname ) : MemberId |
Performs the Membership Method: Retrieve member ID. Creates a query string using the nickname parameter provided DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberListings ( string query ) : Listings |
Performs the Membership Method: Retrieve a member’s listings. GET using the "query" string provided - should be the "Member/{member_id}/Listings.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberListingsById ( string id ) : Listings |
Performs the Membership Method: Retrieve a member’s listings. Creates a query string using the parameters provided. DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberProfileById ( string id ) : MemberProfile |
Performs the membership method: Retrieve a member’s profile data. Creates a query string using the member id provided. DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberProfileByQueryString ( string query ) : MemberProfile |
Performs the membership method: Retrieve a member’s profile data using the "query" string provided - should be the "Member/{member_id}/Profile.xml" part of the url. It shouldn't include "http://api.trademe.co.nz/v1/". DOES NOT REQUIRE AUTHENTICATION.
|
|
MembershipMethods ( |
Initializes a new instance of the MembershipMethods class.
|
Method | Description | |
---|---|---|
FeedbackConnectionHelper ( string url ) : Feedback |
A helper method for performing the http request for feedback requests. DOES NOT REQUIRE AUTHENTICATION.
|
|
FeedbackCountConnectionHelper ( string url ) : FeedbackCount |
A helper method for performing the http request for feedback count requests.
|
|
MemberIdConnectionHelper ( string url ) : MemberId |
A helper method for performing the http request for MemberId requests. DOES NOT REQUIRE AUTHENTICATION.
|
|
MemberProfileHelper ( string url ) : MemberProfile |
A helper method for performing the http request for a member profile request.
|
public MemberFeedbackById ( string id, MemberFeedbackCriteria criteria ) : Feedback | ||
id | string | The members id. |
criteria | MemberFeedbackCriteria | The criteria. |
return | Feedback |
public MemberFeedbackByQueryString ( string query ) : Feedback | ||
query | string | The query string that will be added to the base url and used to connect to the API with. |
return | Feedback |
public MemberFeedbackCountById ( string id ) : FeedbackCount | ||
id | string | The members id. |
return | FeedbackCount |
public MemberFeedbackCountByQueryString ( string query ) : FeedbackCount | ||
query | string | The query string that will be added to the base url and used to connect to the API with. |
return | FeedbackCount |
public MemberId ( string query ) : MemberId | ||
query | string | The query string that will be added to the base url and used to connect to the API with. |
return | MemberId |
public MemberIdByNickname ( string nickname ) : MemberId | ||
nickname | string | The members nickname. |
return | MemberId |
public MemberListings ( string query ) : Listings | ||
query | string | The query string that will be added to the base url and used to connect to the API with. |
return | Listings |
public MemberListingsById ( string id ) : Listings | ||
id | string | The members id. |
return | Listings |
public MemberProfileById ( string id ) : MemberProfile | ||
id | string | The members id. |
return | MemberProfile |
public MemberProfileByQueryString ( string query ) : MemberProfile | ||
query | string | The query string that will be added to the base url and used to connect to the API with. |
return | MemberProfile |
public MembershipMethods ( |
||
connect | A ConnectionMethods class used to make calls to the API | |
return | System |