All the information related to a transaction.

Transaction

interface Transaction {
    breakdowns?: Breakdown[];
    contexts?: Context[];
    description?: string;
    items?: Item[];
    marketplaceDetails?: MarketplaceDetails;
    postedDate?: string;
    relatedIdentifiers?: RelatedIdentifier[];
    sellingPartnerMetadata?: SellingPartnerMetadata;
    totalAmount?: Currency;
    transactionId?: string;
    transactionStatus?: string;
    transactionType?: string;
}

Properties

breakdowns?: Breakdown[]

A list of breakdowns that provide details on how the total amount is calculated for the transaction.

Transaction

contexts?: Context[]

A list of additional information about the item.

Transaction

description?: string

Describes the reasons for the transaction. Example: 'Order Payment', 'Refund Order'

Transaction

items?: Item[]

A list of items in the transaction.

Transaction

marketplaceDetails?: MarketplaceDetails

Transaction

postedDate?: string

A date in ISO 8601 date-time format.

Transaction

relatedIdentifiers?: RelatedIdentifier[]

Related business identifiers of the transaction.

Transaction

sellingPartnerMetadata?: SellingPartnerMetadata

Transaction

totalAmount?: Currency

Transaction

transactionId?: string

The unique identifier of the transaction.

Transaction

transactionStatus?: string

The status of the transaction. Possible values: * Deferred * Released

Transaction

transactionType?: string

The type of transaction. Possible value: Shipment

Transaction