TransactionDetails Response Group
The TransactionDetails response group returns information about customer transactions, including:
-
Condition of the transaction
-
Date of the transaction
-
Seller ID
-
Total dollar amount of the transaction
TransactionDetails does not return information about the items purchased or about the customers who completed the transaction.
Response Elements
The following table describes the elements returned by TransactionDetails.
TransactionDetails
also returns the elements that all response groups return, which is described in Elements Common to All Response Groups.
Parent Response Group
The following response groups are parent response groups of TransactionDetails.
-
None
Child Response Group
The following response groups are child response groups of TransactionDetails.
-
None
Sample REST Use Case
The following request was used to illustrate the XML response elements returned by TransactionDetails.
http://ecs.amazonaws.com/onca/xml?
Service=AWSECommerceService&
AWSAccessKeyId=[AWS Access Key ID]
&
Operation=TransactionLookup&
TransactionId=011-6222227-3333335&
ResponseGroup=TransactionDetails&
Version=2008-08-19
Sample Response Snippet
The following response snippet shows the elements returned by TransactionDetails.
<Transaction> <TransactionId>00269664477138425</TransactionId> <SellerId>ATVPDKIKX0DER</SellerId> <Condition>Complete</Condition> <TransactionDate>20050608T19:19:27</TransactionDate> <TransactionDateEpoch>1118258367</TransactionDateEpoch> <SellerName>Amazon.com</SellerName> <Totals> <Total> <Amount>1879</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$18.79</FormattedPrice> </Total> <Subtotal> <Amount>1485</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$14.85</FormattedPrice> </Subtotal> <Tax> <Amount>144</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$1.44</FormattedPrice> </Tax> <ShippingCharge> <Amount>399</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$3.99</FormattedPrice> </ShippingCharge> <Promotion> <Amount>149</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$1.49</FormattedPrice> </Promotion> </Totals> <TransactionItems> <TransactionItem> <TransactionItemId>jooloslsnpl</TransactionItemId> <Quantity>1</Quantity> <UnitPrice> <Amount>1485</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$14.85</FormattedPrice> </UnitPrice> <TotalPrice> <Amount>1485</Amount> <CurrencyCode>USD</CurrencyCode> <FormattedPrice>$14.85</FormattedPrice> </TotalPrice> </TransactionItem> </TransactionItems> <Shipments> <Shipment> <Condition>Shipped</Condition> <ShipmentItems> <TransactionItemId>jooloslsnpl</TransactionItemId> </ShipmentItems> </Shipment> </Shipments> </Transaction> </Transactions>