Adyen · Schema
GetAccountHolderRequest
GetAccountHolderRequest schema from Adyen API
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-get-account-holder-request-schema.json",
"title": "GetAccountHolderRequest",
"description": "GetAccountHolderRequest schema from Adyen API",
"type": "object",
"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"
}
}
}