PayPal · Schema

List Transactions

The list transactions for a subscription request details.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
transactions array An array of transactions.
total_items integer The total number of items.
total_pages integer The total number of pages.
links array An array of request-related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links).
View JSON Schema on GitHub

JSON Schema

paypal-transactions-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/transactions_list",
  "title": "List Transactions",
  "description": "The list transactions for a subscription request details.",
  "type": "object",
  "properties": {
    "transactions": {
      "type": "array",
      "description": "An array of transactions.",
      "minItems": 0,
      "maxItems": 32767,
      "items": {
        "$ref": "#/components/schemas/transaction"
      }
    },
    "total_items": {
      "type": "integer",
      "description": "The total number of items.",
      "minimum": 0,
      "maximum": 500000000
    },
    "total_pages": {
      "type": "integer",
      "description": "The total number of pages.",
      "minimum": 0,
      "maximum": 100000000
    },
    "links": {
      "type": "array",
      "description": "An array of request-related [HATEOAS links](/docs/api/reference/api-responses/#hateoas-links).",
      "readOnly": true,
      "minItems": 1,
      "maxItems": 10,
      "items": {
        "readOnly": true,
        "$ref": "#/components/schemas/link_description"
      }
    }
  }
}