A response that contains the customer’s transaction history for an app.

HistoryResponse

interface HistoryResponse {
    appAppleId?: number;
    bundleId?: string;
    environment?: string;
    hasMore?: boolean;
    revision?: string;
    signedTransactions?: string[];
}

Properties

appAppleId?: number

The unique identifier of an app in the App Store.

appAppleId

bundleId?: string

The bundle identifier of an app.

bundleId

environment?: string

The server environment in which you’re making the request, whether sandbox or production.

environment

hasMore?: boolean

A Boolean value indicating whether the App Store has more transaction data.

hasMore

revision?: string

A token you use in a query to request the next set of transactions for the customer.

revision

signedTransactions?: string[]

An array of in-app purchase transactions for the customer, signed by Apple, in JSON Web Signature format.

JWSTransaction