Adyen · Schema

GetAccountHolderRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account of which to retrieve the details. > Required if no `accountHolderCode` is provided.
accountHolderCode string The code of the account holder of which to retrieve the details. > Required if no `accountCode` is provided.
showDetails boolean True if the request should return the account holder details
View JSON Schema on GitHub

JSON Schema

adyen-getaccountholderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAccountHolderRequest",
  "title": "GetAccountHolderRequest",
  "properties": {
    "accountCode": {
      "description": "The code of the account of which to retrieve the details.\n> Required if no `accountHolderCode` is provided.",
      "type": "string"
    },
    "accountHolderCode": {
      "description": "The code of the account holder of which to retrieve the details.\n> Required if no `accountCode` is provided.",
      "type": "string"
    },
    "showDetails": {
      "x-addedInVersion": "4",
      "description": "True if the request should return the account holder details",
      "type": "boolean"
    }
  },
  "type": "object"
}