Transactions List

June 5, 2026 ยท View on GitHub

The list transactions for a subscription request details.

Structure

TransactionsList

Fields

NameTypeTagsDescriptionGetterSetter
TransactionsList<SubscriptionTransactionDetails>OptionalAn array of transactions.

Constraints: Minimum Items: 0, Maximum Items: 32767
List getTransactions()setTransactions(List transactions)
TotalItemsIntegerOptionalThe total number of items.

Constraints: >= 0, <= 500000000
Integer getTotalItems()setTotalItems(Integer totalItems)
TotalPagesIntegerOptionalThe total number of pages.

Constraints: >= 0, <= 100000000
Integer getTotalPages()setTotalPages(Integer totalPages)
LinksList<LinkDescription>Optional, Read-onlyAn array of request-related HATEOAS links.

Constraints: Minimum Items: 1, Maximum Items: 10
List getLinks()setLinks(List links)

Example (as JSON)

{
  "transactions": [
    {
      "status": "PARTIALLY_REFUNDED",
      "id": "id8",
      "amount_with_breakdown": {
        "gross_amount": {
          "currency_code": "currency_code4",
          "value": "value0"
        },
        "total_item_amount": {
          "currency_code": "currency_code8",
          "value": "value4"
        },
        "fee_amount": {
          "currency_code": "currency_code2",
          "value": "value4"
        },
        "shipping_amount": {
          "currency_code": "currency_code0",
          "value": "value6"
        },
        "tax_amount": {
          "currency_code": "currency_code2",
          "value": "value8"
        },
        "net_amount": {
          "currency_code": "currency_code6",
          "value": "value2"
        }
      },
      "payer_name": {
        "prefix": "prefix8",
        "given_name": "given_name2",
        "surname": "surname8",
        "middle_name": "middle_name0",
        "suffix": "suffix0"
      },
      "payer_email": "payer_email6",
      "time": "time8"
    }
  ],
  "total_items": 254,
  "total_pages": 34,
  "links": [
    {
      "href": "href6",
      "rel": "rel0",
      "method": "HEAD"
    },
    {
      "href": "href6",
      "rel": "rel0",
      "method": "HEAD"
    }
  ]
}