Website logo

Gets all branding image details associated with an authenticated user

Returns a list of branding images associated with a member. The response includes the Url to the branding images.

URL: https://api.trademe.co.nz/v1/Member/{memberId}/BrandingImages.{file_format}
HTTP Method: GET
Requires Authentication? Yes
Permission Required: MyTradeMeRead: Read your membership & listing data.
Supported Formats: XML, JSON
Rate Limited? Yes

URL parameters

memberId Integer (required)

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

Returns

<GetBrandingImagesResponse>

List of all branding images with their details

PageSize Integer

The number of results in the current page.

List Collection of <BrandingImageDetails> or null

A list of the results in the current page.

Example XML Response (switch to JSON)

<GetBrandingImagesResponse xmlns="http://api.trademe.co.nz/v1">
  <PageSize>123</PageSize>
  <List>
    <BrandingImageDetails />
    <BrandingImageDetails />
  </List>
</GetBrandingImagesResponse>

Example JSON Response (switch to XML)

{
  "PageSize": 123,
  "List": [
    {
    },
    {
    }
  ]
}