BNY Mellon · Schema

TransactionListResponse

Paginated transaction list

Asset ServicingBankingInstitutional BankingPaymentsTreasuryWire TransfersFortune 500

Properties

Name Type Description
transactions array
totalCount integer
pageSize integer
View JSON Schema on GitHub

JSON Schema

transactionlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bank-of-new-york-mellon/json-schema/transactionlistresponse-schema.json",
  "title": "TransactionListResponse",
  "type": "object",
  "description": "Paginated transaction list",
  "properties": {
    "transactions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      }
    },
    "totalCount": {
      "type": "integer"
    },
    "pageSize": {
      "type": "integer"
    }
  }
}