Adyen · Schema

TransactionSearchResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
_links object Contains links to the next and previous page whenever applicable.
data array Contains the transactions that match the query parameters.
View JSON Schema on GitHub

JSON Schema

adyen-transactionsearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionSearchResponse",
  "title": "TransactionSearchResponse",
  "properties": {
    "_links": {
      "description": "Contains links to the next and previous page whenever applicable.",
      "$ref": "#/components/schemas/Links"
    },
    "data": {
      "description": "Contains the transactions that match the query parameters.",
      "items": {
        "$ref": "#/components/schemas/Transaction"
      },
      "type": "array"
    }
  },
  "type": "object"
}