Adyen · Schema

TransactionSearchResponse

TransactionSearchResponse schema from Adyen API

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

transfers-transaction-search-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-transaction-search-response-schema.json",
  "title": "TransactionSearchResponse",
  "description": "TransactionSearchResponse schema from Adyen API",
  "type": "object",
  "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"
    }
  }
}