The CustomerFull response group returns all of the content created by a customer, including:
CustomerInfo information: CustomerId, Name, Nickname, and Location (City and State)
CustomerList information: WishList IDs belonging to each customer listed in the response.
CustomerReviews information: ReviewerRank, TotalHelpfulVotes, and Reviews
The About Me message that appears on each Amazon customer's member page
Customer's birthday
All of this information is returned only if the customer has choosen to make it public. Privacy choices are implemented by the customer in the Your Account web page that is accessible from Amazon’s retail web site.
The following table describes the elements returned by CustomerFull. The elements on the left side of a slash mark are the parents of the elements on the right side of the slash mark.
| Response Element | Ancestry | Definition |
|---|---|---|
AboutMe
| Customer/AboutMe | Description of customer. |
ASIN
| CustomerReviews/Review/ASIN | A positive integer distributed by Amazon that uniquely identifies an item, which, in this case, is the item being reviewed. |
Birthday
| Customer/Birthday | Customer's birthday. |
City
| Customer/Location/City | Customer's city. |
Content
| CustomerReviews/Review/Content | The content of the review. |
Country
| Customer/Location/Country | The customer's country. |
CustomerId
| Customer/CustomerId | A positive integer distributed by Amazon that uniquely identifies a customer. |
CustomerReviews
| Customer/CustomerReviews | A parent element that encapsulates all of the elements, such as TotalReviews, relating to the customer's reviews. |
Date
| CustomerReviews/Review/Date | The date of the review. |
HelpfulVotes
| CustomerReviews/Review/HelpfulVotes | The number of times readers entered that the review was helpful to them. |
Nickname
| Customer/Nickname | The customer's nickname. |
Rating
| CustomerReviews/Review/Rating | The customer's rating of the topic being reviewed. |
State
| Customer/Location/State | Customer's state. |
Summary
| CustomerReviews/Review/Summary | A very short summary, like a title, of the review's content. |
TotalVotes
| CustomerReviews/Review/TotalVotes | The total number of people who read and voted on the helpfulness of the review. |
TotalReviewPages
| CustomerReviews/TotalReviewPages | The total number of pages in the review. |
TotalReviews
| CustomerReviews/TotalReviews | The total number of reviews found. |
TotalPages
| Customer/TotalPages | The total number of review pages found. There are up to ten reviews per page. |
TotalResults
| Customer/TotalResults | A parent element that encapsulates all of the results associated with the customer. |
WishListId
| Customer/WishListId | A positive number distributed by Amazon that uniquely identifies a wishlist. |
CustomerFull also returns the elements that all response groups return, which is described in Elements Common to All Response Groups.
The following response groups are parent response groups of CustomerFull.
None
The following response groups are child response groups of CustomerFull.
All locales.
http://ecs.amazonaws.com/onca/xml? Service=AWSECommerceService& AWSAccessKeyId=[Access Key ID]& Operation=CustomerContentLookup& CustomerId=[Customer_ID]& ResponseGroup=CustomerFull
The following response snippet shows the elements returned by CustomerFull.
<Customer>
<CustomerId>ABCDEFG12345</CustomerId>
<Nickname>jeff</Nickname>
<WishListId>ABCDEF12345</WishListId>
<CustomerReviews>
<TotalReviews>8</TotalReviews>
<TotalReviewPages>1</TotalReviewPages>
<Review>
<ASIN>6305692688</ASIN>
<Rating>1</Rating>
<HelpfulVotes>21</HelpfulVotes>
<TotalVotes>35</TotalVotes>
<Date>2000-02-29</Date>
<Summary>one star is indeed one too many</Summary>
<Content>Let's face facts. This is a terrible, terrible movie. We have to guess that all involved in this project are hiding. Really, I'm generally quite easy on movies, but this endless stream of uninteresting battle scenes with pointless dialogue and no discernable plot is perhaps one of the worst movies ever made. Sorry if this seems harsh, but I just don't want anyone to buy it unknowingly.
</Content>
</Review>