The ListMinimum response group returns, for each list in the response, the list's ID, list name, number of items on the list, the number of pages of list items. There are ten list items per page.
The following table describes the elements returned by ListMinimum. 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 |
|---|---|---|
ListId
| List/ListId | A positive integer distribued by Amaon that uniquely identifies a list. |
ListName
| List/ListName | The name of a list. |
TotalItems
| Items/TotalItems | The total number of items found on the list. Each page holds up to ten items. |
TotalPages
| Items/TotalPages | The total number of pages found in a response. Each page holds up to ten list items. |
ListMinimum also returns the elements that all response groups return, which is described in Elements Common to All Response Groups.
The folllowing request was used to illustrate the XML response elements returned by ListMinimum.
http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService& AWSAccessKeyId=[Access Key ID]& Operation=ListSearch& ListType=WishList& Name=John%20Smith& ResponseGroup=ListMinimum
The following response snippet shows the elements returned by ListMinimum.
<TotalResults>557</TotalResults> <TotalPages>56</TotalPages> <List> <ListId>2AAAAAAAAAA6B</ListId> <ListName>Wishlist</ListName> <TotalItems>73</TotalItems> <TotalPages>8</TotalPages> </List> <List> <ListId>OBBBBBBBBBM2</ListId> <ListName>Wishlist</ListName> <TotalItems>30</TotalItems> <TotalPages>3</TotalPages> </List> <List> <ListId>HCCCCCCCCCAX</ListId> <ListName>Wishlist</ListName> <TotalItems>122</TotalItems> <TotalPages>13</TotalPages> </List> <List> <ListId>3DDDDDDDDDDD4</ListId> <ListName>Wishlist</ListName> <TotalItems>33</TotalItems> <TotalPages>4</TotalPages> </List>