Amazon · JSON Structure

Selling Partner Transaction List Structure

TransactionList schema from Amazon Selling Partner API

Type: object Properties: 2
AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

TransactionList is a JSON Structure definition published by Amazon, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

transactions nextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "transactions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "transactionType": {
            "type": "string"
          },
          "transactionId": {
            "type": "string"
          },
          "transactionStatus": {
            "type": "string"
          },
          "postedDate": {
            "type": "datetime"
          },
          "totalAmount": {
            "$ref": "#/components/schemas/Money"
          }
        }
      }
    },
    "nextToken": {
      "type": "string"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "TransactionList",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-structure/selling-partner-transaction-list-structure.json",
  "description": "TransactionList schema from Amazon Selling Partner API"
}